From 35efa24ce590bc7f8bede4f3454f4dd633797512 Mon Sep 17 00:00:00 2001 From: Felipe Cardoso Date: Mon, 10 Nov 2025 11:05:25 +0100 Subject: [PATCH] Add `loginViaUI` import in `auth.setup.ts` to support UI-based authentication setup --- frontend/e2e/auth.setup.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/e2e/auth.setup.ts b/frontend/e2e/auth.setup.ts index a46d667..c0b6b1d 100644 --- a/frontend/e2e/auth.setup.ts +++ b/frontend/e2e/auth.setup.ts @@ -13,7 +13,7 @@ import { test as setup } from '@playwright/test'; import path from 'path'; -import { setupAuthenticatedMocks, setupSuperuserMocks } from './helpers/auth'; +import { setupAuthenticatedMocks, setupSuperuserMocks, loginViaUI } from './helpers/auth'; // Use absolute paths to ensure correct file location const ADMIN_STORAGE_STATE = path.join(__dirname, '.auth', 'admin.json');