Skip to content

Commit 6439f68

Browse files
authored
test: ignore helper files in WPTs
PR-URL: #48079 Reviewed-By: Yagiz Nizipli <[email protected]> Reviewed-By: Matthew Aitken <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
1 parent 30870d1 commit 6439f68

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/common/wpt.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -411,7 +411,7 @@ class StatusLoader {
411411
const list = this.grep(filepath);
412412
result = result.concat(list);
413413
} else {
414-
if (!(/\.\w+\.js$/.test(filepath))) {
414+
if (!(/\.\w+\.js$/.test(filepath)) || filepath.endsWith('.helper.js')) {
415415
continue;
416416
}
417417
result.push(filepath);

0 commit comments

Comments
 (0)