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