1
0
mirror of https://github.com/fluencelabs/js-libp2p synced 2025-04-12 12:16:03 +00:00

15 lines
322 B
JavaScript
Raw Normal View History

'use strict'
const path = require('path')
const { waitForOutput } = require('../utils')
async function test () {
process.stdout.write('1.js\n')
await waitForOutput('This information is sent out encrypted to the other peer', 'node', [path.join(__dirname, '1.js')], {
cwd: __dirname
})
}
module.exports = test