mirror of
https://github.com/fluencelabs/js-libp2p-interfaces
synced 2025-04-04 23:51:08 +00:00
10 lines
231 B
JavaScript
10 lines
231 B
JavaScript
|
module.exports.all = function (test, common) {
|
||
|
test('see if this works', function (t) {
|
||
|
common.setup(test, function (err, muxer) {
|
||
|
t.ifError(err, 'Should not throw')
|
||
|
// write test here
|
||
|
t.end()
|
||
|
})
|
||
|
})
|
||
|
}
|