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 951cc7b commit f1e1312Copy full SHA for f1e1312
test/common/wpt.js
@@ -613,10 +613,8 @@ class WPTRunner {
613
}
614
615
process.on('exit', () => {
616
- if (this.inProgress.size > 0) {
617
- for (const filename of this.inProgress) {
618
- this.fail(filename, { name: 'Unknown' }, kIncomplete);
619
- }
+ for (const spec of this.inProgress) {
+ this.fail(spec, { name: 'Unknown' }, kIncomplete);
620
621
inspect.defaultOptions.depth = Infinity;
622
// Sorts the rules to have consistent output
0 commit comments