Improve the UI and tests

This commit is contained in:
Urtzi Alfaro
2025-11-15 21:21:06 +01:00
parent 86d704b354
commit 54b7a5e080
44 changed files with 2268 additions and 1414 deletions

View File

@@ -1,4 +1,5 @@
import { test, expect } from '@playwright/test';
import { acceptCookieConsent } from '../helpers/utils';
test.describe('Onboarding Wizard Navigation', () => {
// Use authenticated state
@@ -7,6 +8,8 @@ test.describe('Onboarding Wizard Navigation', () => {
test.beforeEach(async ({ page }) => {
// Navigate to onboarding
await page.goto('/app/onboarding');
// Accept cookie consent if present
await acceptCookieConsent(page);
});
test('should display first step of onboarding wizard', async ({ page }) => {