feat: implement Save & Taste flow in CameraCapture

This commit is contained in:
2025-12-18 11:49:40 +01:00
parent 2685176992
commit 5f757d7b56
9 changed files with 244 additions and 19 deletions

12
tests/e2e/landing.test.ts Normal file
View File

@@ -0,0 +1,12 @@
import { test, expect } from '@playwright/test';
test('has title and login form', async ({ page }) => {
await page.goto('/');
// Expect a title "to contain" a substring.
await expect(page.locator('h1')).toContainText('WHISKYVAULT');
// Expect login form to be visible
await expect(page.getByPlaceholder('name@beispiel.de')).toBeVisible();
await expect(page.getByRole('button', { name: 'Einloggen' })).toBeVisible();
});