2021-02-08 11:03:42 +01:00
|
|
|
'use strict'
|
|
|
|
|
|
|
|
const path = require('path')
|
|
|
|
const execa = require('execa')
|
2021-08-16 21:29:06 +02:00
|
|
|
const { toString: uint8ArrayToString } = require('uint8arrays/to-string')
|
2021-02-08 11:03:42 +01:00
|
|
|
|
|
|
|
async function test() {
|
|
|
|
process.stdout.write('2.js\n')
|
|
|
|
|
|
|
|
const proc = execa('node', [path.join(__dirname, '2.js')], {
|
|
|
|
cwd: path.resolve(__dirname),
|
|
|
|
all: true
|
|
|
|
})
|
|
|
|
|
2022-01-20 12:03:35 +00:00
|
|
|
let output = ''
|
|
|
|
|
2021-02-08 11:03:42 +01:00
|
|
|
proc.all.on('data', async (data) => {
|
|
|
|
process.stdout.write(data)
|
|
|
|
|
2022-01-20 12:03:35 +00:00
|
|
|
output += uint8ArrayToString(data)
|
2021-02-08 11:03:42 +01:00
|
|
|
|
2022-01-20 12:03:35 +00:00
|
|
|
if (output.includes('Found provider:')) {
|
|
|
|
proc.kill()
|
2021-02-08 11:03:42 +01:00
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = test
|