fix: reduce timeout values and fix test auth issues
Pull Request / unit-tests (pull_request) Successful in 2m31s
Pull Request / analyze-bump-type (pull_request) Successful in 12s
Pull Request / build-and-deploy-ci (pull_request) Failing after 42m4s

- Reduce URL wait timeouts from 10000ms to 5000ms across tests
- Fix tournament-edit-allowTies: add login before navigating to edit page
- Fix epic4-tournament-creation: fill name field before clicking Next
- Fix cucumber config: remove broken cucumber-pretty formatter
This commit is contained in:
2026-05-18 20:05:15 -07:00
parent e08c2bbdfd
commit 005cf7293d
6 changed files with 97 additions and 25 deletions
+3 -3
View File
@@ -253,13 +253,13 @@ test.describe('Elo Rating Updates', () => {
// Wait for page to load and tournaments to be fetched
await page.waitForLoadState('domcontentloaded');
await page.waitForTimeout(2000);
await page.waitForTimeout(500);
// Wait for tournament dropdown to be ready
await page.waitForSelector('select#tournament', { timeout: 5000 });
await page.waitForSelector('select#tournament', { timeout: 3000 });
// Wait a bit for tournaments to load
await page.waitForTimeout(2000);
await page.waitForTimeout(500);
// Select the tournament manually
const tournamentSelect = await page.locator('select#tournament');