js-libp2p/test/index.spec.js

13 lines
247 B
JavaScript
Raw Permalink Normal View History

2016-03-23 15:30:14 +01:00
/* eslint-env mocha */
'use strict'
const expect = require('chai').expect
2016-11-25 20:08:05 +00:00
const libp2p = require('../src')
2016-03-23 15:30:14 +01:00
describe('libp2p', () => {
2016-11-25 20:08:05 +00:00
it('the skeleton is fine, now go build your own libp2p bundle', () => {
expect(libp2p).to.exist
2016-03-23 15:30:14 +01:00
})
})