Skip to content

Commit 20928c9

Browse files
committed
chore - deno 2
1 parent e8730de commit 20928c9

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

tests/integration/playwright-tests.test.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,8 @@ for (const { path: fileName } of globOutput) {
5252
// mediabag inspection if we don't wait all renders
5353
// individually. This is very slow..
5454
await execProcess({
55-
cmd: [quartoDevCmd(), "render", input, ...options],
55+
cmd: quartoDevCmd(),
56+
args: ["render", input, ...options],
5657
});
5758
fileNames.push(fileName);
5859
}
@@ -65,7 +66,8 @@ Deno.test({
6566
try {
6667
// run playwright
6768
const res = await execProcess({
68-
cmd: [isWindows ? "npx.cmd" : "npx", "playwright", "test", "--ignore-snapshots"],
69+
cmd: isWindows ? "npx.cmd" : "npx",
70+
args: ["playwright", "test", "--ignore-snapshots"],
6971
cwd: "integration/playwright",
7072
});
7173
if (!res.success) {

0 commit comments

Comments
 (0)