Skip to content

Commit

Permalink
chore: do not run tests in parallel
Browse files Browse the repository at this point in the history
  • Loading branch information
PascalinDe committed Jan 25, 2024
1 parent 9b93346 commit cbbb92c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion web/frontend/playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ require("dotenv").config({ path: "./../../.env" });
export default defineConfig({
testDir: './tests',
/* Run tests in files in parallel */
fullyParallel: true,
fullyParallel: false,
/* Fail the build on CI if you accidentally left test.only in the source code. */
forbidOnly: !!process.env.CI,
/* Retry on CI only */
Expand All @@ -24,6 +24,7 @@ export default defineConfig({
/* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */
trace: 'on-first-retry',
},
workers: 1,

/* Configure projects for major browsers */
projects: [
Expand Down

0 comments on commit cbbb92c

Please sign in to comment.