Skip to content

Commit

Permalink
test: fix default WPT titles
Browse files Browse the repository at this point in the history
PR-URL: #46778
Backport-PR-URL: #46767
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Richard Lau <rlau@redhat.com>
  • Loading branch information
panva authored and juanarbol committed Mar 5, 2023
1 parent 5f422c4 commit 162e340
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions test/common/wpt.js
Expand Up @@ -724,6 +724,9 @@ class WPTRunner {
resultCallback(filename, test, reportResult) {
const status = this.getTestStatus(test.status);
const title = this.getTestTitle(filename);
if (/^Untitled( \d+)?$/.test(test.name)) {
test.name = `${title}${test.name.slice(8)}`;
}
console.log(`---- ${title} ----`);
if (status !== kPass) {
this.fail(filename, test, status, reportResult);
Expand Down
4 changes: 2 additions & 2 deletions test/wpt/status/dom/events.json
Expand Up @@ -19,8 +19,8 @@
"Event-constructors.any.js": {
"fail": {
"expected": [
"Untitled 3",
"Untitled 4"
"Event constructors 3",
"Event constructors 4"
]
}
},
Expand Down

0 comments on commit 162e340

Please sign in to comment.