summaryrefslogtreecommitdiff
path: root/tools/wpt/utils.ts
diff options
context:
space:
mode:
authorFilip Skokan <panva.ip@gmail.com>2023-03-02 23:05:17 +0100
committerGitHub <noreply@github.com>2023-03-02 23:05:17 +0100
commit64503fabd81e38c58d44d23ae94f5b87a384b86e (patch)
treec2ef35c55dcccbf6c5efcbd7400ef2d328b72e71 /tools/wpt/utils.ts
parent88c9a999f78916700b35b6a893a5b779a4f86db0 (diff)
test(wpt): implement process timeout, fix expectations update, and more... (#17892)
- relands #17872 - updates the timeouts to be re-configurable just for CI - fixes `./tools/wpt.ts update` - adds option not "ignore" during, applied to wpt epoch runs only
Diffstat (limited to 'tools/wpt/utils.ts')
-rw-r--r--tools/wpt/utils.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/wpt/utils.ts b/tools/wpt/utils.ts
index 47cb8c5ec..1752dab04 100644
--- a/tools/wpt/utils.ts
+++ b/tools/wpt/utils.ts
@@ -13,10 +13,11 @@ export const {
["--"]: rest,
["auto-config"]: autoConfig,
["inspect-brk"]: inspectBrk,
+ ["no-ignore"]: noIgnore,
binary,
} = parse(Deno.args, {
"--": true,
- boolean: ["quiet", "release", "no-interactive", "inspect-brk"],
+ boolean: ["quiet", "release", "no-interactive", "inspect-brk", "no-ignore"],
string: ["json", "wptreport", "binary"],
});