mirror of
https://github.com/fluencelabs/js-libp2p
synced 2025-03-17 16:10:52 +00:00
12 lines
210 B
JavaScript
12 lines
210 B
JavaScript
|
'use strict'
|
||
|
|
||
|
const test1 = require('./test-1')
|
||
|
const testMessageFiltering = require('./message-filtering/test')
|
||
|
|
||
|
async function test() {
|
||
|
await test1()
|
||
|
await testMessageFiltering()
|
||
|
}
|
||
|
|
||
|
module.exports = test
|