From 47a9953804fd59fae6ffe1dfcb3913b22aea7c91 Mon Sep 17 00:00:00 2001 From: Cong-Cong Pan Date: Fri, 11 Oct 2024 14:24:29 +0800 Subject: [PATCH] fix: playwright install woring in rsbuild (#60) --- tests/rsbuild.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/rsbuild.ts b/tests/rsbuild.ts index 1f46c1c..99ed1d6 100644 --- a/tests/rsbuild.ts +++ b/tests/rsbuild.ts @@ -8,7 +8,7 @@ export async function test(options: RunOptions) { branch: process.env.RSBUILD_REF ?? 'main', beforeTest: async () => { cd('./e2e') - await $`pnpm playwright install --with-deps` + await $`npx playwright install` cd('..') }, test: ['e2e:rspack'],