From 72dccdb8e3ec4b2b318c5f29502bf4c451db5fe9 Mon Sep 17 00:00:00 2001 From: naman-bruno Date: Thu, 11 Dec 2025 22:50:32 +0530 Subject: [PATCH] fix --- tests/utils/page/actions.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/utils/page/actions.ts b/tests/utils/page/actions.ts index 5348a1e75..3713861e8 100644 --- a/tests/utils/page/actions.ts +++ b/tests/utils/page/actions.ts @@ -76,7 +76,8 @@ const createCollection = async (page, collectionName: string, collectionLocation } await createCollectionModal.getByRole('button', { name: 'Create', exact: true }).click(); - await createCollectionModal.waitFor({ state: 'detached' }); + await createCollectionModal.waitFor({ state: 'detached', timeout: 15000 }); + await page.waitForTimeout(200); if (options.openWithSandboxMode != undefined) { await openCollectionAndAcceptSandbox(page, collectionName, options.openWithSandboxMode);