diff options
author | Luca Casonato <lucacasonato@yahoo.com> | 2021-01-24 22:29:36 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-24 22:29:36 +0100 |
commit | 66e99d349b31f5cd30b868d80ebdab6ba749fd96 (patch) | |
tree | 2fdf22255cb15a750574d37b33de2a4637d62a5e /cli/tests/wpt_testharnessconsolereporter.js | |
parent | feff6361b1247c82bb86aedfea349b04899b9610 (diff) |
tests: enable wpt for url (#9046)
Diffstat (limited to 'cli/tests/wpt_testharnessconsolereporter.js')
-rw-r--r-- | cli/tests/wpt_testharnessconsolereporter.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/tests/wpt_testharnessconsolereporter.js b/cli/tests/wpt_testharnessconsolereporter.js index 2e0e06c02..24979ce52 100644 --- a/cli/tests/wpt_testharnessconsolereporter.js +++ b/cli/tests/wpt_testharnessconsolereporter.js @@ -111,13 +111,13 @@ window.add_completion_callback((tests, harnessStatus) => { console.log(`\nfailures:\n`); } for (const result of failed) { - console.log(` ${result.name}`); + console.log(` ${JSON.stringify(result.name)}`); } if (expectedFailedButPassedCount > 0) { console.log(`\nexpected failures that passed:\n`); } for (const result of expectedFailedButPassed) { - console.log(` ${result.name}`); + console.log(` ${JSON.stringify(result.name)}`); } console.log( `\ntest result: ${ |