diff options
Diffstat (limited to 'tests/wpt/runner/utils.ts')
-rw-r--r-- | tests/wpt/runner/utils.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/wpt/runner/utils.ts b/tests/wpt/runner/utils.ts index 988e06c09..1674419cd 100644 --- a/tests/wpt/runner/utils.ts +++ b/tests/wpt/runner/utils.ts @@ -1,7 +1,7 @@ // Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. /// FLAGS -import { parse } from "@std/flags/mod.ts"; +import { parseArgs } from "@std/cli/parse-args"; import { join, resolve, ROOT_PATH } from "../../../tools/util.js"; export const { @@ -15,7 +15,7 @@ export const { ["inspect-brk"]: inspectBrk, ["no-ignore"]: noIgnore, binary, -} = parse(Deno.args, { +} = parseArgs(Deno.args, { "--": true, boolean: ["quiet", "release", "no-interactive", "inspect-brk", "no-ignore"], string: ["json", "wptreport", "binary"], |