From ecf923db0590aea056d299b611ca4854309bcb89 Mon Sep 17 00:00:00 2001 From: dakota002 Date: Tue, 11 Jun 2024 13:46:19 -0400 Subject: [PATCH] remove unrelated changes --- __playwright__/circulars.spec.ts | 4 ---- playwright.config.ts | 2 +- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/__playwright__/circulars.spec.ts b/__playwright__/circulars.spec.ts index 97e718427b..55512cadda 100644 --- a/__playwright__/circulars.spec.ts +++ b/__playwright__/circulars.spec.ts @@ -4,11 +4,7 @@ test.describe('Circulars archive page', () => { test('responds to changes in the number of results per page', async ({ page, }) => { - test.slow() await page.goto('/circulars') - while (await page.isVisible('#unexpectedError')) { - await page.reload() - } for (const expectedResultsPerPage of [10, 20]) { await page .getByTitle('Number of results per page') diff --git a/playwright.config.ts b/playwright.config.ts index d49986f966..2459ddff5c 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -87,6 +87,6 @@ export default defineConfig({ url: 'http://localhost:3333', reuseExistingServer: !process.env.CI, stdout: 'pipe', - timeout: 180 * 1000, // 180 Seconds timeout on webServer + timeout: 120 * 1000, // 120 Seconds timeout on webServer }, })