We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc013f2 commit 2fa853bCopy full SHA for 2fa853b
2 files changed
.github/workflows/test.yml
@@ -35,9 +35,6 @@ jobs:
35
- name: 📥 Install dependencies
36
run: pnpm install --ignore-scripts --frozen-lockfile
37
38
- - name: 🎭 Install Playwright browsers
39
- run: pnpm exec playwright install chromium
40
-
41
- name: 🔍 Type Check
42
run: pnpm run typecheck
43
vite.config.ts
@@ -24,7 +24,9 @@ export default defineConfig({
24
name: "browser",
25
browser: {
26
enabled: true,
27
- provider: playwright(),
+ provider: playwright({
28
+ launchOptions: process.env.CI ? { channel: "chrome" } : undefined,
29
+ }),
30
// https://vitest.dev/guide/browser/playwright
31
instances: [
32
{ browser: 'chromium' },
0 commit comments