From befa3af7b400be9bcbd7215737e57e9461f4106b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=BF=A0=20/=20green?= Date: Mon, 30 Sep 2024 16:11:18 +0900 Subject: [PATCH] fix(vuepress): install playwright chromium before testing (#328) --- tests/vuepress.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/vuepress.ts b/tests/vuepress.ts index 05745b2..78cd919 100755 --- a/tests/vuepress.ts +++ b/tests/vuepress.ts @@ -10,6 +10,7 @@ export async function test(options: RunOptions) { }, branch: 'main', build: 'build', + beforeTest: 'pnpm --filter e2e exec playwright install chromium', test: 'test', }) }