Skip to content

Commit

Permalink
test: fix default WPT titles
Browse files Browse the repository at this point in the history
PR-URL: #46778
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
  • Loading branch information
panva committed Feb 22, 2023
1 parent 607ff34 commit 7a1d158
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test/common/wpt.js
Expand Up @@ -781,6 +781,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

0 comments on commit 7a1d158

Please sign in to comment.