mirror of
https://github.com/fluencelabs/js-libp2p
synced 2025-03-18 00:20:51 +00:00
37 lines
732 B
JavaScript
37 lines
732 B
JavaScript
'use strict'
|
|
|
|
const path = require('path')
|
|
const execa = require('execa')
|
|
const pWaitFor = require('p-wait-for')
|
|
const uint8ArrayToString = require('uint8arrays/to-string')
|
|
|
|
async function test() {
|
|
process.stdout.write('1.js\n')
|
|
|
|
const addrs = []
|
|
let foundIt = false
|
|
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)
|
|
|
|
// Discovered peer
|
|
if (!foundIt && line.includes('Found it, multiaddrs are:')) {
|
|
foundIt = true
|
|
}
|
|
|
|
addrs.push(line)
|
|
})
|
|
|
|
await pWaitFor(() => addrs.length === 2)
|
|
|
|
proc.kill()
|
|
}
|
|
|
|
module.exports = test
|