WIP - feat: convergence (#94)

* feat: convergence

* structure examples
This commit is contained in:
David Dias
2017-07-04 11:43:45 +01:00
committed by GitHub
parent e3870f3f8a
commit 606fa737b8
45 changed files with 2267 additions and 91 deletions

14
test/base.js Normal file
View File

@ -0,0 +1,14 @@
/* eslint-env mocha */
'use strict'
const chai = require('chai')
chai.use(require('dirty-chai'))
const expect = chai.expect
const libp2p = require('../src')
describe('libp2p', () => {
it('the skeleton is fine, now go build your own libp2p bundle', () => {
expect(libp2p).to.exist()
})
})