mirror of
https://github.com/fluencelabs/js-libp2p-interfaces
synced 2025-04-25 18:52:30 +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()
|
|
})
|
|
})
|
|
}
|