first implementation

This commit is contained in:
Wuesteon 2025-11-27 17:26:18 +01:00
parent 98efa6f6e8
commit 74dc6892ab
61 changed files with 30899 additions and 4934 deletions

71
tests/e2e/example.spec.ts Normal file
View file

@ -0,0 +1,71 @@
import { test, expect } from '@playwright/test';
/**
* Example E2E test suite
* Copy this file for each web application and customize the tests
*/
test.describe('Homepage', () => {
test('should load successfully', async ({ page }) => {
await page.goto('/');
// Wait for page to be fully loaded
await page.waitForLoadState('networkidle');
// Check that the page has a title
await expect(page).toHaveTitle(/.+/);
});
test('should have working navigation', async ({ page }) => {
await page.goto('/');
// Example: check if navigation links exist
const navLinks = page.locator('nav a');
await expect(navLinks.first()).toBeVisible();
});
});
test.describe('Authentication', () => {
test.skip('should allow user to sign in', async ({ page }) => {
await page.goto('/login');
// Fill in login form
await page.fill('input[type="email"]', 'test@example.com');
await page.fill('input[type="password"]', 'testpassword123');
// Submit form
await page.click('button[type="submit"]');
// Wait for navigation
await page.waitForURL('**/dashboard');
// Verify successful login
await expect(page).toHaveURL(/.*dashboard/);
});
test.skip('should show error for invalid credentials', async ({ page }) => {
await page.goto('/login');
await page.fill('input[type="email"]', 'invalid@example.com');
await page.fill('input[type="password"]', 'wrongpassword');
await page.click('button[type="submit"]');
// Check for error message
const errorMessage = page.locator('.error-message');
await expect(errorMessage).toBeVisible();
});
});
test.describe('Responsive Design', () => {
test('should be mobile-friendly', async ({ page }) => {
// Set mobile viewport
await page.setViewportSize({ width: 375, height: 667 });
await page.goto('/');
// Check mobile menu or responsive elements
const mobileMenu = page.locator('[aria-label="mobile menu"]');
// This is just an example - customize based on your app
await expect(page.locator('body')).toBeVisible();
});
});