mirror of
https://github.com/fluencelabs/js-libp2p-interfaces
synced 2025-04-02 18:51:16 +00:00
9 lines
174 B
JavaScript
9 lines
174 B
JavaScript
|
module.exports.all = function (test, common) {
|
||
|
test('a test', function (t) {
|
||
|
common.setup(test, function (err, conn) {
|
||
|
t.ifError(err)
|
||
|
t.end()
|
||
|
})
|
||
|
})
|
||
|
}
|