mirror of
https://github.com/fluencelabs/js-libp2p
synced 2025-04-03 16:21:04 +00:00
In order to support no-copy operations in streams, update all deps to support streaming Uint8ArrayLists.
30 lines
727 B
JavaScript
30 lines
727 B
JavaScript
import path from 'path'
|
|
import { execa } from 'execa'
|
|
import pDefer from 'p-defer'
|
|
import { toString as uint8ArrayToString } from 'uint8arrays/to-string'
|
|
import { fileURLToPath } from 'url'
|
|
|
|
const __dirname = path.dirname(fileURLToPath(import.meta.url))
|
|
|
|
export async function test () {
|
|
const defer = pDefer()
|
|
process.stdout.write('1.js\n')
|
|
|
|
const proc = execa('node', [path.join(__dirname, '1.js')], {
|
|
cwd: path.resolve(__dirname),
|
|
all: true
|
|
})
|
|
|
|
proc.all.on('data', async (data) => {
|
|
process.stdout.write(data)
|
|
const line = uint8ArrayToString(data)
|
|
|
|
if (line.includes('node1 received: Bird bird bird, bird is the word!')) {
|
|
defer.resolve()
|
|
}
|
|
})
|
|
|
|
await defer.promise
|
|
proc.kill()
|
|
}
|