diff options
author | Asher Gomez <ashersaupingomez@gmail.com> | 2024-07-25 15:30:28 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-25 15:30:28 +1000 |
commit | 5f44148e83bb0056b7a361dd6a1bf28d11f3116d (patch) | |
tree | e73ff318a69cabedf33a962be6fa6c73e6775f3e /tests/wpt | |
parent | 84b7504d0fdccc07b9f7412408c954ae07765ccb (diff) |
chore: update to `std@2024.07.19` (#24715)
Diffstat (limited to 'tests/wpt')
-rw-r--r-- | tests/wpt/runner/utils.ts | 4 | ||||
-rwxr-xr-x | tests/wpt/wpt.ts | 6 |
2 files changed, 5 insertions, 5 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"], diff --git a/tests/wpt/wpt.ts b/tests/wpt/wpt.ts index fe226d5bc..8879de133 100755 --- a/tests/wpt/wpt.ts +++ b/tests/wpt/wpt.ts @@ -32,9 +32,9 @@ import { updateManifest, wptreport, } from "./runner/utils.ts"; -import { pooledMap } from "@std/async/pool.ts"; -import { blue, bold, green, red, yellow } from "@std/fmt/colors.ts"; -import { writeAll, writeAllSync } from "@std/io/write_all.ts"; +import { pooledMap } from "@std/async/pool"; +import { blue, bold, green, red, yellow } from "@std/fmt/colors"; +import { writeAll, writeAllSync } from "@std/io/write-all"; import { saveExpectation } from "./runner/utils.ts"; class TestFilter { |