chore: update playwright config

This commit is contained in:
Mythie
2025-04-21 13:03:29 +10:00
parent 37cc41d713
commit 755ef697ba

View File

@ -16,12 +16,12 @@ ENV_FILES.forEach((file) => {
export default defineConfig({
testDir: './e2e',
/* Run tests in files in parallel */
fullyParallel: true,
fullyParallel: false,
workers: '50%',
/* Fail the build on CI if you accidentally left test.only in the source code. */
forbidOnly: !!process.env.CI,
/* Retry on CI only */
retries: process.env.CI ? 2 : 1,
retries: process.env.CI ? 4 : 1,
/* Reporter to use. See https://playwright.dev/docs/test-reporters */
reporter: 'html',
/* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */