Some checks failed
Main Confidence / confidence (push) Failing after 43s
## Summary - implement the website-only core IA for Spec 215 with canonical Home, Product, Trust, Changelog, Contact, Privacy, and Imprint routes - reduce primary navigation to the core buyer journey, retain legal/supporting pages as secondary surfaces, and redirect `/security-trust` to `/trust` - add route metadata, sitemap/canonical handling, changelog publishing, and updated smoke coverage for the new IA contract ## Testing - `corepack pnpm build:website` - `cd apps/website && corepack pnpm exec playwright test` - integrated browser smoke validation for core routes, secondary routes, `/security-trust -> /trust`, hidden optional routes, mobile nav, and Trust/Changelog to Contact paths ## Notes - keeps all changes local to `apps/website` and the Spec 215 artifacts - preserves the website working contract with no `apps/platform` runtime coupling Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de> Reviewed-on: #252
57 lines
2.2 KiB
TypeScript
57 lines
2.2 KiB
TypeScript
import { expect, test } from '@playwright/test';
|
|
|
|
import {
|
|
expectCtaHierarchy,
|
|
expectDisclosureLayer,
|
|
expectFooterLinks,
|
|
expectNavigationVsCtaDifferentiation,
|
|
expectPageFamily,
|
|
expectPrimaryNavigation,
|
|
expectShell,
|
|
visitPage,
|
|
} from './smoke-helpers';
|
|
|
|
test('home uses the landing foundation to explain the product category with one clear action hierarchy', async ({
|
|
page,
|
|
}) => {
|
|
await visitPage(page, '/');
|
|
await expectShell(page, /TenantAtlas/);
|
|
await expectPageFamily(page, 'landing');
|
|
await expectDisclosureLayer(page, '1');
|
|
await expectDisclosureLayer(page, '2');
|
|
await expectPrimaryNavigation(page);
|
|
await expectNavigationVsCtaDifferentiation(page);
|
|
await expectFooterLinks(page);
|
|
await expect(
|
|
page.getByRole('heading', {
|
|
name: 'Understand the product, the trust posture, and the next step without route sprawl.',
|
|
}),
|
|
).toBeVisible();
|
|
await expectCtaHierarchy(page, 'See the product model', 'Review the trust posture');
|
|
await expect(page.getByRole('main').getByRole('link', { name: 'Read the changelog' }).first()).toBeVisible();
|
|
await expect(page.getByRole('main').getByRole('link', { name: 'Start the working session' }).first()).toBeVisible();
|
|
|
|
const skipLink = page.getByRole('link', { name: 'Skip to content' });
|
|
|
|
await page.keyboard.press('Tab');
|
|
await expect(skipLink).toBeFocused();
|
|
});
|
|
|
|
test('product keeps the connected operating model readable without collapsing into a feature list', async ({
|
|
page,
|
|
}) => {
|
|
await visitPage(page, '/product');
|
|
await expectShell(page, /operating model|restore posture|governance/i);
|
|
await expectPageFamily(page, 'landing');
|
|
await expectDisclosureLayer(page, '1');
|
|
await expectDisclosureLayer(page, '2');
|
|
await expectPrimaryNavigation(page);
|
|
await expectNavigationVsCtaDifferentiation(page);
|
|
await expectFooterLinks(page);
|
|
await expect(
|
|
page.getByRole('heading', { name: 'Explain what the product does before asking for buyer trust.' }),
|
|
).toBeVisible();
|
|
await expectCtaHierarchy(page, 'Review the trust posture', 'Start the working session');
|
|
await expect(page.getByRole('main').getByRole('link', { name: 'Read the changelog' }).first()).toBeVisible();
|
|
});
|