Browse Source

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

pull/6524/head
Muhammed Mustafa 1 year ago
parent
commit
1fb5d128c0
  1. 8
      tests/playwright/package.json
  2. 2
      tests/playwright/playwright.config.ts

8
tests/playwright/package.json

@ -30,10 +30,10 @@
"test:debug:watch": "pnpm dlx nodemon -e ts -w ./ -x \"pnpm run test:debug\"",
"test:debug:quick:sqlite": "./startPlayWrightServer.sh; PW_QUICK_TEST=1 PW_TEST_REUSE_CONTEXT=1 PW_TEST_CONNECT_WS_ENDPOINT=ws://127.0.0.1:31000/ PWDEBUG=console pnpm exec playwright test -c playwright.config.ts --headed --project=chromium --retries 0 --timeout 5 --workers 1 --max-failures=1",
"ci:test": "pnpm exec playwright test --workers=2",
"ci:test:shard:1": "pnpm exec playwright test --workers=1 --shard=1/4",
"ci:test:shard:2": "pnpm exec playwright test --workers=1 --shard=2/4",
"ci:test:shard:3": "pnpm exec playwright test --workers=1 --shard=3/4",
"ci:test:shard:4": "pnpm exec playwright test --workers=1 --shard=4/4",
"ci:test:shard:1": "pnpm exec playwright test --workers=3 --shard=1/4",
"ci:test:shard:2": "pnpm exec playwright test --workers=3 --shard=2/4",
"ci:test:shard:3": "pnpm exec playwright test --workers=3 --shard=3/4",
"ci:test:shard:4": "pnpm exec playwright test --workers=3 --shard=4/4",
"ci:test:flaky:repeat": "pnpm exec playwright test --workers=4 --grep @flaky --repeat-each=3",
"ci:test:mysql": "E2E_DB_TYPE=mysql pnpm exec playwright test --workers=2",
"ci:test:pg": "E2E_DB_TYPE=pg pnpm exec playwright test --workers=2",

2
tests/playwright/playwright.config.ts

@ -38,7 +38,7 @@ export default defineConfig({
// headless: !!process.env.CI,
headless: true,
/* Maximum time each action such as `click()` can take. Defaults to 0 (no limit). */
actionTimeout: 4000,
actionTimeout: process.env.E2E_DB_TYPE === 'sqlite' ? 12000 : 4000,
/* Base URL to use in actions like `await page.goto('/')`. */
baseURL: 'http://localhost:3000',

Loading…
Cancel
Save