mirror of
https://github.com/fluencelabs/js-libp2p
synced 2025-06-17 19:21:22 +00:00
deps: update it-length-prefix, uint8arraylist etc (#1317)
In order to support no-copy operations in streams, update all deps to support streaming Uint8ArrayLists.
This commit is contained in:
@ -1,4 +1,4 @@
|
||||
import execa from 'execa'
|
||||
import { execa } from 'execa'
|
||||
import fs from 'fs-extra'
|
||||
import which from 'which'
|
||||
|
||||
@ -26,7 +26,10 @@ export async function waitForOutput (expectedOutput, command, args = [], opts =
|
||||
command = 'node'
|
||||
}
|
||||
|
||||
const proc = execa(command, args, opts)
|
||||
const proc = execa(command, args, {
|
||||
...opts,
|
||||
all: true
|
||||
})
|
||||
let output = ''
|
||||
let time = 600000
|
||||
|
||||
|
Reference in New Issue
Block a user