diff options
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 ); |