diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-02-26 20:33:18 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-26 20:33:18 +0100 |
commit | 9adcdabd6592e05d0196119deaaf642480a14a90 (patch) | |
tree | 36c2b637cde38bdccbc0dc3e61ec1b0a55bad81d /cli/js/unit_test_runner.ts | |
parent | 671f0b83be5cf9f9b6b1d667d41fd7779896a21a (diff) |
stream output of js unit tests (#4146)
Diffstat (limited to 'cli/js/unit_test_runner.ts')
-rwxr-xr-x | cli/js/unit_test_runner.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/js/unit_test_runner.ts b/cli/js/unit_test_runner.ts index dd095058f..f32de96f8 100755 --- a/cli/js/unit_test_runner.ts +++ b/cli/js/unit_test_runner.ts @@ -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 ); |