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 088e9cd commit 0d1485bCopy full SHA for 0d1485b
2 files changed
test/common/wpt.js
@@ -722,6 +722,9 @@ class WPTRunner {
722
resultCallback(filename, test, reportResult) {
723
const status = this.getTestStatus(test.status);
724
const title = this.getTestTitle(filename);
725
+ if (/^Untitled( \d+)?$/.test(test.name)) {
726
+ test.name = `${title}${test.name.slice(8)}`;
727
+ }
728
console.log(`---- ${title} ----`);
729
if (status !== kPass) {
730
this.fail(filename, test, status, reportResult);
test/wpt/status/dom/events.json
@@ -19,8 +19,8 @@
19
"Event-constructors.any.js": {
20
"fail": {
21
"expected": [
22
- "Untitled 2",
23
- "Untitled 3"
+ "Event constructors 2",
+ "Event constructors 3"
24
]
25
}
26
},
0 commit comments