We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b0ca770 commit e623e1aCopy full SHA for e623e1a
test/common/wpt.js
@@ -678,11 +678,8 @@ class WPTRunner {
678
}
679
680
process.on('exit', () => {
681
- if (this.inProgress.size > 0) {
682
- for (const id of this.inProgress) {
683
- const spec = this.specs.get(id);
684
- this.fail(spec, { name: 'Unknown' }, kIncomplete);
685
- }
+ for (const spec of this.inProgress) {
+ this.fail(spec, { name: 'Unknown' }, kIncomplete);
686
687
inspect.defaultOptions.depth = Infinity;
688
// Sorts the rules to have consistent output
0 commit comments