messages implemented

This commit is contained in:
2026-02-26 21:12:32 +01:00
parent d0aefc5ddc
commit 15b7b77d20
168 changed files with 14728 additions and 6786 deletions

View File

@@ -3,5 +3,5 @@ import { test, expect } from '@playwright/test';
test('home page loads and shows legacy page container', async ({ page }) => {
await page.goto('/');
await expect(page).toHaveTitle(/Skinbase/i);
await expect(page.locator('.legacy-page')).toBeVisible();
await expect(page.locator('#homepage-root')).toBeVisible();
});