14 lines
278 B
JavaScript
Raw Normal View History

2021-01-22 10:24:15 +01:00
'use strict'
const path = require('path')
const { waitForOutput } = require('../utils')
2021-01-22 10:24:15 +01:00
async function test () {
await waitForOutput('This message is sent on a private network', 'node', [path.join(__dirname, 'index.js')], {
cwd: __dirname
2021-01-22 10:24:15 +01:00
})
}
module.exports = test