stream output of js unit tests (#4146)

This commit is contained in:
Bartek Iwańczuk 2020-02-26 20:33:18 +01:00 committed by GitHub
parent 671f0b83be
commit 9adcdabd65
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 16 deletions

View file

@ -61,8 +61,8 @@ async function main(): Promise<void> {
stdout: "piped"
});
const { actual, expected, resultOutput } = parseUnitTestOutput(
await p.output(),
const { actual, expected, resultOutput } = await parseUnitTestOutput(
p.stdout!,
true
);