Skip to content

Commit

Permalink
WPT: ignore tests that make the runner crash or stall
Browse files Browse the repository at this point in the history
  • Loading branch information
orottier committed Jan 12, 2024
1 parent 5620eb3 commit a457fb1
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .scripts/wpt-harness.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,17 @@ const filter = (name) => {
if (name.includes('/resources/')) {
return false;
}

// TODO <https://github.com/ircam-ismm/node-web-audio-api/issues/57>
// these tests make the runner crash
if (
name.includes('the-audiocontext-interface/suspend-with-navigation.html')
|| name.includes('the-audionode-interface/audionode-disconnect-audioparam.html')
|| name.includes('the-audionode-interface/audionode-disconnect.html')
) {
return false;
}

if (filterRe.test(name)) {
if (options.list) {
console.log(name);
Expand Down

0 comments on commit a457fb1

Please sign in to comment.