summaryrefslogtreecommitdiff
path: root/.github/workflows/ci.generate.ts
diff options
context:
space:
mode:
authorAsher Gomez <ashersaupingomez@gmail.com>2024-03-07 08:59:30 +1100
committerGitHub <noreply@github.com>2024-03-06 22:59:30 +0100
commitfed9dec92a281070521743c3b415dd653f80b3ae (patch)
treeabeb7e54daba63a60baabd55fc8641844bd6549d /.github/workflows/ci.generate.ts
parent7542d1050a61583d279bdd9c1cf05eaad71f4548 (diff)
fix: point to correct WPT runner file (#22753)
We were previously pointing to the incorrect runner file.
Diffstat (limited to '.github/workflows/ci.generate.ts')
-rwxr-xr-x.github/workflows/ci.generate.ts8
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/ci.generate.ts b/.github/workflows/ci.generate.ts
index 8ad59150b..312b9bbc7 100755
--- a/.github/workflows/ci.generate.ts
+++ b/.github/workflows/ci.generate.ts
@@ -850,11 +850,11 @@ const ci = {
"deno run --allow-env --allow-net --allow-read --allow-run \\",
" --allow-write --unstable \\",
" --lock=tools/deno.lock.json \\",
- " ./tests/wpt/runner/runner.ts setup",
+ " ./tests/wpt/wpt.ts setup",
"deno run --allow-env --allow-net --allow-read --allow-run \\",
" --allow-write --unstable \\",
" --lock=tools/deno.lock.json \\",
- ' ./tests/wpt/runner/runner.ts run --quiet --binary="$DENO_BIN"',
+ ' ./tests/wpt/wpt.ts run --quiet --binary="$DENO_BIN"',
].join("\n"),
},
{
@@ -867,11 +867,11 @@ const ci = {
"deno run --allow-env --allow-net --allow-read --allow-run \\",
" --allow-write --unstable \\",
" --lock=tools/deno.lock.json \\",
- " ./tests/wpt/runner/runner.ts setup",
+ " ./tests/wpt/wpt.ts setup",
"deno run --allow-env --allow-net --allow-read --allow-run \\",
" --allow-write --unstable \\",
" --lock=tools/deno.lock.json \\",
- " ./tests/wpt/runner/runner.ts run --quiet --release \\",
+ " ./tests/wpt/wpt.ts run --quiet --release \\",
' --binary="$DENO_BIN" \\',
" --json=wpt.json \\",
" --wptreport=wptreport.json",