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

15 lines
271 B
JavaScript
Raw Normal View History

2021-02-11 11:12:23 +01:00
'use strict'
const path = require('path')
const { waitForOutput } = require('../utils')
2021-02-11 11:12:23 +01:00
async function test () {
process.stdout.write('1.js\n')
await waitForOutput('/p2p/', 'node', [path.join(__dirname, '1.js')], {
cwd: __dirname
2021-02-11 11:12:23 +01:00
})
}
module.exports = test