15 lines
277 B
JavaScript
Raw Normal View History

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