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: #46768
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
  • Loading branch information
panva authored and BethGriggs committed Mar 23, 2023
1 parent 088e9cd commit 0d1485b
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 @@ -722,6 +722,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 2",
"Untitled 3"
"Event constructors 2",
"Event constructors 3"
]
}
},
Expand Down

0 comments on commit 0d1485b

Please sign in to comment.