mirror of
https://github.com/fluencelabs/js-libp2p
synced 2025-03-20 01:20:50 +00:00
13 lines
247 B
JavaScript
13 lines
247 B
JavaScript
/* eslint-env mocha */
|
|
'use strict'
|
|
|
|
const expect = require('chai').expect
|
|
|
|
const libp2p = require('../src')
|
|
|
|
describe('libp2p', () => {
|
|
it('the skeleton is fine, now go build your own libp2p bundle', () => {
|
|
expect(libp2p).to.exist
|
|
})
|
|
})
|