summaryrefslogtreecommitdiff
path: root/tools/wpt.ts
diff options
context:
space:
mode:
authorAsher Gomez <ashersaupingomez@gmail.com>2024-02-16 14:32:28 +1100
committerGitHub <noreply@github.com>2024-02-16 03:32:28 +0000
commit5596de8081970a6fa811b95e60a27dca071a714e (patch)
treec4772533f3a7b2c9945cb8f0797e4ec38fc637a9 /tools/wpt.ts
parent4f80d83774ce5402a2b10503529fe422c998b841 (diff)
chore: move `test_util/wpt` to `tests/wpt/suite` (#22412)
As discussed with @mmastrac. I'll move `tools/wpt` to `tests/wpt` in a follow-up PR. --------- Co-authored-by: Matt Mastracci <matthew@mastracci.com>
Diffstat (limited to 'tools/wpt.ts')
-rwxr-xr-xtools/wpt.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/wpt.ts b/tools/wpt.ts
index 3dab83fb1..93b96b201 100755
--- a/tools/wpt.ts
+++ b/tools/wpt.ts
@@ -149,7 +149,7 @@ async function setup() {
if (Deno.build.os == "windows") {
console.log("To do this run the following command in PowerShell:");
console.log("");
- console.log(" cd test_util/wpt/");
+ console.log(" cd tests/wpt/suite/");
console.log(
" python.exe wpt make-hosts-file | Out-File $env:SystemRoot\\System32\\drivers\\etc\\hosts -Encoding ascii -Append",
);
@@ -157,7 +157,7 @@ async function setup() {
} else {
console.log("To do this run the following command in your shell:");
console.log("");
- console.log(" cd test_util/wpt/");
+ console.log(" cd tests/wpt/suite/");
console.log(
" python3 ./wpt make-hosts-file | sudo tee -a /etc/hosts",
);