Skip to content
/ node Public
forked from nodejs/node

Commit

Permalink
test: fix default WPT titles
Browse files Browse the repository at this point in the history
PR-URL: nodejs#46778
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Backport-PR-URL: nodejs#46767
  • Loading branch information
panva committed Feb 22, 2023
1 parent 8812c56 commit f88b581
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test/common/wpt.js
Original file line number Diff line number Diff line change
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

0 comments on commit f88b581

Please sign in to comment.