mirror of
https://github.com/fluencelabs/js-libp2p-interfaces
synced 2025-04-23 21:42:15 +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, pr) {
|
|
t.plan(1)
|
|
t.ifError(err)
|
|
})
|
|
})
|
|
}
|