3bfa54b4b3
- Nuxt 3 project with @nuxtjs/tailwindcss module - Tailwind CSS config with A0 Dark Theme design tokens (CSS custom properties) - AppHeader: sticky, logo, nav, phone, social icons, mobile burger menu - AppFooter: 4-column grid (Navigation, Kontakt, Rechtliches, Social) - HmsLogo: SVG with orange #EC6925 border - error.vue: 404 page with Seite nicht gefunden - robots.txt server route: Disallow: / - Meta: noindex, nofollow, noarchive, nosnippet - JSON-LD: LocalBusiness schema - OpenGraph tags - routeRules: SSR/CSR per route - Shared components: LoadingSkeleton, EmptyState, ErrorState, LegalContentPage, SpeakerIcon - 42 vitest tests passing - Build: 0 errors
11 lines
430 B
TypeScript
11 lines
430 B
TypeScript
import { test, expect } from "@playwright/test";
|
|
|
|
test.describe("Error Pages", () => {
|
|
test("404 page should show 'Seite nicht gefunden'", async ({ page }) => {
|
|
const response = await page.goto("/nicht-existent");
|
|
expect(response?.status()).toBe(404);
|
|
await expect(page.locator("body")).toContainText("Seite nicht gefunden");
|
|
await expect(page.getByRole("link", { name: /Startseite/ })).toBeVisible();
|
|
});
|
|
});
|