We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8812c56 commit f88b581Copy full SHA for f88b581
test/common/wpt.js
@@ -724,6 +724,9 @@ class WPTRunner {
724
resultCallback(filename, test, reportResult) {
725
const status = this.getTestStatus(test.status);
726
const title = this.getTestTitle(filename);
727
+ if (/^Untitled( \d+)?$/.test(test.name)) {
728
+ test.name = `${title}${test.name.slice(8)}`;
729
+ }
730
console.log(`---- ${title} ----`);
731
if (status !== kPass) {
732
this.fail(filename, test, status, reportResult);
0 commit comments