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 }, })