mirror of
https://github.com/fluencelabs/js-libp2p
synced 2025-03-30 06:11:05 +00:00
14 lines
278 B
JavaScript
14 lines
278 B
JavaScript
'use strict'
|
|
|
|
const path = require('path')
|
|
const { waitForOutput } = require('../utils')
|
|
|
|
async function test () {
|
|
await waitForOutput('This message is sent on a private network', 'node', [path.join(__dirname, 'index.js')], {
|
|
cwd: __dirname
|
|
})
|
|
}
|
|
|
|
module.exports = test
|
|
|