From 28906f1ac13929c3054fe553dd4f3fafc948a8f6 Mon Sep 17 00:00:00 2001 From: Muhammed Mustafa Date: Sat, 30 Sep 2023 10:10:57 +0530 Subject: [PATCH] fix: Increased worker count and increased test action timeout to test stability --- tests/playwright/package.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/playwright/package.json b/tests/playwright/package.json index f6e64b0815..3d965cc05e 100644 --- a/tests/playwright/package.json +++ b/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=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:shard:1": "pnpm exec playwright test --workers=2 --shard=1/4", + "ci:test:shard:2": "pnpm exec playwright test --workers=2 --shard=2/4", + "ci:test:shard:3": "pnpm exec playwright test --workers=2 --shard=3/4", + "ci:test:shard:4": "pnpm exec playwright test --workers=2 --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",