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 6b41482 commit b9b63bcCopy full SHA for b9b63bc
1 file changed
playwright/playwright.config.ts
@@ -20,10 +20,13 @@ export default defineConfig({
20
trace: 'on',
21
video: 'on-first-retry',
22
},
23
- projects: process.env.CI
24
- ? [
25
- { name: 'chromium', use: { ...devices['Desktop Chrome'] } },
26
- // { name: 'firefox', use: { ...devices['Desktop Firefox'] } },
27
- ]
28
- : [{ name: 'chromium', use: { ...devices['Desktop Chrome'] } }],
+ projects: [
+ {
+ name: 'chromium',
+ use: {
+ ...devices['Desktop Chrome'],
+ launchOptions: { args: ['--disable-gpu'] },
29
+ },
30
31
+ ],
32
});
0 commit comments