From 40df9569dcab73601c44bc419f0b88ba44273aea Mon Sep 17 00:00:00 2001 From: joel-medicala-yral Date: Mon, 23 Dec 2024 12:48:54 +0530 Subject: [PATCH] set timeout to 50000ms --- tests/e2e/src/profileTest.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/e2e/src/profileTest.js b/tests/e2e/src/profileTest.js index 0f3b8cdd..22e67b83 100644 --- a/tests/e2e/src/profileTest.js +++ b/tests/e2e/src/profileTest.js @@ -10,7 +10,7 @@ describe('Profile page tests', function () { it('profile page', async function (browser) { - browser.element.findByText('Login').waitUntil('visible', { timeout: 10000 }).click() + browser.element.findByText('Login').waitUntil('visible', { timeout: 50000 }).click() browser.element.findByText('Google Sign-In').waitUntil('visible') })