Browse Source

fix: Increased worker count and increased test action timeout to test stability

pull/6524/head
Muhammed Mustafa 1 year ago
parent
commit
a2b29de8ea
  1. 4
      tests/playwright/playwright.config.ts

4
tests/playwright/playwright.config.ts

@ -14,8 +14,8 @@ let workers = process.env.CI ? 2 : 4;
if (process.env.CI) { if (process.env.CI) {
if (process.env.E2E_DB_TYPE === 'sqlite') workers = 1; if (process.env.E2E_DB_TYPE === 'sqlite') workers = 1;
if (process.env.E2E_DB_TYPE === 'mysql') workers = 4; if (process.env.E2E_DB_TYPE === 'mysql') workers = 3;
if (process.env.E2E_DB_TYPE === 'pg') workers = 4; if (process.env.E2E_DB_TYPE === 'pg') workers = 3;
} }
export default defineConfig({ export default defineConfig({

Loading…
Cancel
Save