diff options
Diffstat (limited to 'tools/wpt.ts')
-rwxr-xr-x | tools/wpt.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/wpt.ts b/tools/wpt.ts index a3999a425..4ebe875c9 100755 --- a/tools/wpt.ts +++ b/tools/wpt.ts @@ -647,7 +647,8 @@ function discoverTestsToRun( const url = new URL(path, "http://web-platform.test:8000"); if ( !url.pathname.endsWith(".any.html") && - !url.pathname.endsWith(".window.html") + !url.pathname.endsWith(".window.html") && + !url.pathname.endsWith(".worker.html") ) { continue; } |