Skip to content

Commit 2728f1f

Browse files
committed
test: increase wait timeout to 65 seconds for Pulsifi Talent App smoke test
1 parent e57c34a commit 2728f1f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/e2e/ui-tests/pulsifi/talent-app.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ test.describe('smoke test for talent app', () => {
66
test.beforeEach(async ({ page }) => {
77
await page.goto(appUrl);
88
await page.waitForURL(/enterprise|id/, {waitUntil: 'load'});
9+
await page.waitForTimeout(1 * 65 * 1000);
910
});
1011

1112
test('should load the app successfully', async ({ page }) => {
12-
await page.waitForTimeout(30 * 1000);
1313
await page.getByRole('textbox', { name: 'Email' }).fill('test2@gmail.com');
1414
await page.getByRole('textbox', { name: 'Password' }).fill('Qa12345');
1515
await page.getByRole('button', { name: 'Log In' }).click();

0 commit comments

Comments
 (0)