mirror of
https://github.com/fluencelabs/js-libp2p-interfaces
synced 2025-04-08 16:18:07 +00:00
11 lines
191 B
JavaScript
11 lines
191 B
JavaScript
|
'use strict'
|
||
|
|
||
|
module.exports.all = function (test, common) {
|
||
|
test('test', function (t) {
|
||
|
common.setup(test, function (err, pr) {
|
||
|
if (err) {}
|
||
|
common.teardown()
|
||
|
})
|
||
|
})
|
||
|
}
|