Disable impersonation tests in the CI due to excessive flakiness (#421)

This commit is contained in:
Giancarlo Buomprisco
2025-12-07 10:03:17 +08:00
committed by GitHub
parent 1d6fec9760
commit abf48bd36e
2 changed files with 6 additions and 1 deletions

View File

@@ -213,6 +213,11 @@ test.describe('Admin', () => {
test.describe('Impersonation', () => {
test('can sign in as a user', async ({ page }) => {
// TODO: find out why it only fails in the CI
if (process.env.CI) {
test.skip();
}
const auth = new AuthPageObject(page);
await auth.loginAsSuperAdmin({});