Skip to content

Commit

Permalink
Removing parallell for Playwright tests
Browse files Browse the repository at this point in the history
  • Loading branch information
wrt95 committed Feb 6, 2024
1 parent f73ce31 commit ebbae9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/testing/playwright/playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export default defineConfig<ExtendedTestOptions>({
trace: 'on-first-retry',
baseURL: process.env.PLAYWRIGHT_TEST_BASE_URL,
},
fullyParallel: true,
fullyParallel: false,
forbidOnly: !!process.env.CI,
retries: process.env.CI ? 2 : 0,
workers: 1, // Github actions always use only 1, so we set to 1 locally as well
Expand Down

0 comments on commit ebbae9e

Please sign in to comment.