Skip to content

Commit c434da0

Browse files
committed
testing e2e failing test on github
1 parent e595740 commit c434da0

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

frontend/playwright.config.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,15 @@ import { defineConfig, devices } from '@playwright/test'
66
export default defineConfig({
77
testDir: './e2e',
88
fullyParallel: false,
9+
retries: process.env.CI ? 2 : 0,
910
reporter: [['list']],
1011
use: {
1112
baseURL: 'http://localhost:5173',
1213
trace: 'on-first-retry',
14+
// Bootstrap 5 drops its fade/collapse transitions under reduced-motion, so
15+
// tab panes/drawers open instantly — kills the tab-fade race that timed out
16+
// .check()/.uncheck() inside drawers on slow CI.
17+
reducedMotion: 'reduce',
1318
},
1419
projects: [{ name: 'chromium', use: { ...devices['Desktop Chrome'] } }],
1520
webServer: {

0 commit comments

Comments
 (0)