From bea418d46c96800e538aef442f6150e084d8c5a3 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tumanov Date: Fri, 20 Jan 2023 12:07:59 +0500 Subject: [PATCH] Increase timeout to prevent failing on teardown (#2524) Signed-off-by: Vyacheslav Tumanov --- tests/sanity/tests/tracker.spec.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/sanity/tests/tracker.spec.ts b/tests/sanity/tests/tracker.spec.ts index 5e42830ffc..948fb984d9 100644 --- a/tests/sanity/tests/tracker.spec.ts +++ b/tests/sanity/tests/tracker.spec.ts @@ -66,6 +66,7 @@ test('issues-status-display', async ({ page }) => { }) test('save-view-options', async ({ page }) => { + test.setTimeout(45000) const panels = ['Issues', 'Active', 'Backlog'] await navigate(page) for (const viewletSelector of [ViewletSelectors.Board, ViewletSelectors.Table]) { @@ -107,6 +108,7 @@ test('my-issues', async ({ page }) => { }) test('report-time-from-issue-card', async ({ page }) => { + test.setTimeout(45000) await navigate(page) const assignee = 'Chen Rosamund' const status = 'In Progress'