0
0
mirror of https://github.com/go-gitea/gitea.git synced 2026-02-22 17:33:16 +01:00

Apply suggestion from @silverwind

Signed-off-by: silverwind <me@silverwind.io>
This commit is contained in:
silverwind 2026-02-15 13:36:05 +01:00
parent 4517e8a5dc
commit a7af563050
No known key found for this signature in database
GPG Key ID: 2E62B41C93869443

View File

@ -16,7 +16,7 @@ export async function login(page: Page) {
}
export async function logout(page: Page) {
await page.context().clearCookies();
await page.context().clearCookies(); // workarkound issues related to fomantic dropdown
await page.goto('/');
await expect(page.getByRole('link', {name: 'Sign In'})).toBeVisible();
}