From 504056eb90222257033b7342d2b32e6687bde80c Mon Sep 17 00:00:00 2001 From: Trent Larson Date: Sun, 1 Jun 2025 15:08:32 -0600 Subject: [PATCH] add some time to test 30 (but shrink the per-loop timeout) --- test-playwright/33-record-gift-x10.spec.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test-playwright/33-record-gift-x10.spec.ts b/test-playwright/33-record-gift-x10.spec.ts index 704765d8..3366a24d 100644 --- a/test-playwright/33-record-gift-x10.spec.ts +++ b/test-playwright/33-record-gift-x10.spec.ts @@ -88,6 +88,8 @@ import { test, expect } from '@playwright/test'; import { importUser, createUniqueStringsArray, createRandomNumbersArray } from './testUtils'; test('Record 9 new gifts', async ({ page }) => { + test.slow(); // Set timeout longer + const giftCount = 9; const standardTitle = 'Gift '; const finalTitles = []; @@ -127,6 +129,6 @@ test('Record 9 new gifts', async ({ page }) => { await expect(page.locator('ul#listLatestActivity li') .filter({ hasText: finalTitles[i] }) .first()) - .toBeVisible({ timeout: 10000 }); + .toBeVisible({ timeout: 3000 }); } }); \ No newline at end of file