From d9a7aa584c1c0a657dadd2a20d5ae62958fb3ff9 Mon Sep 17 00:00:00 2001 From: Pavel Feldman Date: Thu, 20 Apr 2023 16:47:08 -0700 Subject: [PATCH] chore: bump timeouts in ui mode tests (#22526) --- tests/playwright-test/ui-mode-trace.spec.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/playwright-test/ui-mode-trace.spec.ts b/tests/playwright-test/ui-mode-trace.spec.ts index 042591a781..ed36d41378 100644 --- a/tests/playwright-test/ui-mode-trace.spec.ts +++ b/tests/playwright-test/ui-mode-trace.spec.ts @@ -42,7 +42,7 @@ test('should merge trace events', async ({ runUITest, server }) => { /expect\.toBe[\d.]+m?s/, /locator\.clickgetByRole\('button'\)[\d.]+m?s/, /expect\.toBe[\d.]+m?s/, - ]); + ], { timeout: 15000 }); }); test('should locate sync assertions in source', async ({ runUITest, server }) => { @@ -60,7 +60,7 @@ test('should locate sync assertions in source', async ({ runUITest, server }) => await expect( page.locator('.CodeMirror .source-line-running'), 'check source tab', - ).toHaveText('4 expect(1).toBe(1);'); + ).toHaveText('4 expect(1).toBe(1);', { timeout: 15000 }); }); test('should show snapshots for sync assertions', async ({ runUITest, server }) => {