mirror of
https://github.com/fluencelabs/js-libp2p-interfaces
synced 2025-04-25 13:52:30 +00:00
10 lines
202 B
JavaScript
10 lines
202 B
JavaScript
|
module.exports.all = function (test, common) {
|
||
|
test('a test', function (t) {
|
||
|
common.setup(test, function (err, Connection) {
|
||
|
t.ifError(err)
|
||
|
t.pass('woot!')
|
||
|
t.end()
|
||
|
})
|
||
|
})
|
||
|
}
|