mirror of
https://github.com/pbakaus/impeccable.git
synced 2026-09-12 22:26:38 +03:00
19 fixtures (11 styling/build variants + 4 conditional-render scenarios + 4 meta-frameworks) drive the entire user flow end-to-end: handshake, pick, configure, Go, cycle, accept, carbonize cleanup. Each fixture installs real deps, boots the framework dev server, and runs Playwright Chromium against a deterministic fake agent that produces realistic variants (colocated style with @scope rules, full data-impeccable-params manifests covering range + steps + toggle, JSX/HTML/Svelte syntax-aware rendering). The agent is pluggable via a one-method interface — generateVariants(event) — so a future LLM-backed agent slots in by implementing the same shape. The orchestrator handles wrap, file write, accept, and carbonize cleanup deterministically regardless of which agent is plugged in. Schema extensions (tests/framework-fixtures/README.md): runtime block adds preActions / reloadProbe / pickSelector / scheme / ignoreHTTPSErrors so fixtures can drive conditional UI (modal, tab, route) before pick and verify the carbonized variant survives a reload. Static fixture suite filtered to skip dirs without fixture.json so empty scaffold dirs no longer break discovery. Total: 178 static checks, 19 E2E full cycles, ~107s wall clock for the E2E suite. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
42 lines
1.1 KiB
React
42 lines
1.1 KiB
React
import { useState } from 'react';
|
|
|
|
export default function App() {
|
|
const [tab, setTab] = useState('overview');
|
|
|
|
return (
|
|
<main className="page">
|
|
<nav className="tabs" role="tablist">
|
|
<button
|
|
data-testid="tab-overview"
|
|
role="tab"
|
|
aria-selected={tab === 'overview'}
|
|
onClick={() => setTab('overview')}
|
|
>
|
|
Overview
|
|
</button>
|
|
<button
|
|
data-testid="tab-features"
|
|
role="tab"
|
|
aria-selected={tab === 'features'}
|
|
onClick={() => setTab('features')}
|
|
>
|
|
Features
|
|
</button>
|
|
</nav>
|
|
|
|
{tab === 'overview' && (
|
|
<section className="tab-panel" role="tabpanel">
|
|
<p>Default overview content. The hero lives in the Features tab.</p>
|
|
</section>
|
|
)}
|
|
|
|
{tab === 'features' && (
|
|
<section className="tab-panel" role="tabpanel">
|
|
<h1 className="hero-title">Features Hero</h1>
|
|
<p className="hero-hook">Lives in the non-default tab — only mounts when Features is active.</p>
|
|
</section>
|
|
)}
|
|
</main>
|
|
);
|
|
}
|