UNPKG

grenache-nodejs-link

Version:
43 lines (32 loc) 812 B
/* eslint-env mocha */ 'use strict' const assert = require('assert') const Link = require('../') const createGrapes = require('bfx-svc-test-helper/grapes') let grapes describe('announce and lookups', () => { before(function (done) { this.timeout(20000) grapes = createGrapes() grapes.start(done) }) after(function (done) { this.timeout(5000) grapes.stop(done) }) it('start and stop announcing', (done) => { const link = new Link({ grape: 'http://127.0.0.1:30001' }) link.start() link.startAnnouncing('test', 10000, null, (err) => { if (err) throw err link.lookup('test', {}, (err, peers) => { if (err) throw err assert.deepStrictEqual(peers, ['127.0.0.1:10000']) link.stop() done() }) }) }) })