Resources
1Install
npx skillscat add hoangnguyen0403/agent-skills-standard/testing Install via the SkillsCat registry.
SKILL.md
Testing
Priority: P1 (HIGH)
Principles
- Harnesses: Always use
ComponentTestHarness(Angular Material Harnesses) to interact with components. Avoid querying DOM/CSS selectors directly. - Provider Mocks: Use
provideHttpClientTesting()instead of mockingHttpClientmanually. - Signal Testing: Signals update synchronously. No need for
fakeAsyncusually.
Guidelines
- Avoid logic: Tests should just assert inputs and outputs.
- Spectator: Consider using libraries like
@ngneat/spectatorfor cleaner boilerplate if allowed.