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 5f422c4 commit 162e340Copy full SHA for 162e340
2 files changed
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);
test/wpt/status/dom/events.json
@@ -19,8 +19,8 @@
19
"Event-constructors.any.js": {
20
"fail": {
21
"expected": [
22
- "Untitled 3",
23
- "Untitled 4"
+ "Event constructors 3",
+ "Event constructors 4"
24
]
25
}
26
},
0 commit comments