What problem does it solve? Writing unit tests that match a repository's specific conventions is slow and error-prone. This Skill generates *.spec.ts files for Lucca Front code that follow the repo's exact testing setup (Vitest, TestBed, happy-dom, signal-based APIs) so tests pass on the first run and stay consistent with neighboring specs. ## Core Features & Use Cases - Pattern-based test generation: Selects the right testing pattern based on the target type — pure function, pipe, service, HTTP service, component, or directive. - Repo convention compliance: Uses fixture.componentRef.setInput for signal inputs, host component wrappers, HttpTestingController for HTTP services, and UTC-safe date handling. - Behavioral test focus: Produces tests that assert observable behavior and public contracts rather than volatile implementation details. - Use Case: You just wrote a new pipe in packages/ng and need tests. The Skill reads the pipe's source, identifies its dependencies, writes a spec file next to it, and runs npx vitest run to verify it passes. ## Quick Start Generate unit tests for the component in packages/ng/button/button.component.ts following the repository conventions.