Skip to content

Commit 8d2a3b1

Browse files
panvatargos
authored andcommitted
test: ignore helper files in WPTs
PR-URL: #48079 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Matthew Aitken <maitken033380023@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
1 parent f30ba5c commit 8d2a3b1

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)