Skip to content

Commit

Permalink
increase logout timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
sgalsaleh committed Apr 23, 2024
1 parent bf41d66 commit 235fc67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion e2e/playwright/tests/smoke-test/test.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ test('smoke test', async ({ page }) => {
await expect(page.locator('#app')).toContainText('Schedule updated');
await page.locator('div').filter({ hasText: /^Change passwordAdd new applicationLog out$/ }).getByRole('img').click();
await page.getByText('Log out', { exact: true }).click();
await expect(page.getByPlaceholder('password')).toBeVisible();
await expect(page.getByPlaceholder('password')).toBeVisible({ timeout: 30000 });
await expect(page.locator('#app')).toContainText('Enter the password to access the App Name admin console.');
await expect(page.getByRole('button')).toContainText('Log in');
});

0 comments on commit 235fc67

Please sign in to comment.