From b817a7ee6ae7130bb67dbc5897244e8264feecc4 Mon Sep 17 00:00:00 2001 From: Raju Udava <86527202+dstala@users.noreply.github.com> Date: Fri, 28 Jun 2024 12:24:06 +0000 Subject: [PATCH] fix: increase wait for kanban show-all --- tests/playwright/pages/Dashboard/common/Toolbar/Fields.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/playwright/pages/Dashboard/common/Toolbar/Fields.ts b/tests/playwright/pages/Dashboard/common/Toolbar/Fields.ts index 06356e965f..4ad2af24b9 100644 --- a/tests/playwright/pages/Dashboard/common/Toolbar/Fields.ts +++ b/tests/playwright/pages/Dashboard/common/Toolbar/Fields.ts @@ -93,7 +93,7 @@ export class ToolbarFieldsPage extends BasePage { uiAction: () => this.get().locator(`.nc-fields-show-all-fields`).click(), requestUrlPathToMatch: isLocallySaved ? '/api/v1/db/public/' : '/api/v1/db/data/noco/', httpMethodsToMatch: ['GET'], - timeout: 10000, + timeout: 30000, // for Kanban, show all fields can take a long time }); await this.toolbar.clickFields(); }