This commit is contained in:
Ildar Kamalov
2025-08-11 14:30:26 +03:00
parent c7ca1e8eaf
commit 0920a51c4a

View File

@@ -12,12 +12,4 @@ test.describe('Control Panel', () => {
await page.locator('#sign_in').click();
await page.waitForURL((url) => !url.href.endsWith('/login.html'));
});
test('should sign out successfully', async ({ page }) => {
await page.locator('#sign_out').click();
await page.waitForURL((url) => url.href.endsWith('/login.html'));
await expect(page.locator('#sign_in')).toBeVisible();
});
});