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

15 lines
281 B
JavaScript
Raw Normal View History

'use strict'
const path = require('path')
const { waitForOutput } = require('../utils')
async function test () {
process.stdout.write('2.js\n')
await waitForOutput('Found provider:', 'node', [path.join(__dirname, '2.js')], {
cwd: __dirname
})
}
module.exports = test