Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fixup! tools: improve output for unexpected passes in WTP tests
  • Loading branch information
aduh95 committed Apr 5, 2026
commit 9c5cdd788a6859d48407b0b87022f89a369cde8d
4 changes: 2 additions & 2 deletions test/common/wpt.js
Original file line number Diff line number Diff line change
Expand Up @@ -783,9 +783,9 @@ class WPTRunner {
return false;
}
return this.results[key]?.fail?.expected?.includes(expectedToFail) !== true;
})
});
if (_unexpectedPasses.length) {
unexpectedPasses.push(..._unexpectedPasses.map(name => `${key}:${name}`))
unexpectedPasses.push(..._unexpectedPasses.map((name) => `${key}:${name}`));
continue;
}
}
Expand Down
Loading