1
0
mirror of https://github.com/fluencelabs/js-libp2p-interfaces synced 2025-04-21 08:42:28 +00:00

9 lines
174 B
JavaScript
Raw Normal View History

2015-09-16 17:32:10 +01:00
module.exports.all = function (test, common) {
test('a test', function (t) {
common.setup(test, function (err, conn) {
t.ifError(err)
t.end()
})
})
}