chore: update example tests (#1126)

Remove some of the redundancy in the example tests
This commit is contained in:
Alex Potsides
2022-01-20 13:33:01 +00:00
committed by GitHub
parent a0bfe8b534
commit 0264eb62ee
12 changed files with 42 additions and 268 deletions

View File

@ -1,31 +1,14 @@
'use strict'
const path = require('path')
const execa = require('execa')
const pDefer = require('p-defer')
const { toString: uint8ArrayToString } = require('uint8arrays/to-string')
const { waitForOutput } = require('../utils')
async function test() {
const messageDefer = pDefer()
async function test () {
process.stdout.write('1.js\n')
const proc = execa('node', [path.join(__dirname, '1.js')], {
cwd: path.resolve(__dirname),
all: true
await waitForOutput('my own protocol, wow!', 'node', [path.join(__dirname, '1.js')], {
cwd: __dirname
})
proc.all.on('data', async (data) => {
process.stdout.write(data)
const line = uint8ArrayToString(data)
if (line.includes('my own protocol, wow!')) {
messageDefer.resolve()
}
})
await messageDefer.promise
proc.kill()
}
module.exports = test