mirror of
https://github.com/fluencelabs/js-libp2p-interfaces
synced 2025-04-25 10:12:34 +00:00
14 lines
256 B
JavaScript
14 lines
256 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()
|
|
})
|
|
})
|
|
|
|
// test for:
|
|
// 1. dial and listen
|
|
// 2. close
|
|
}
|