Testing Strategies Skill

Installation
SKILL.md

Testing Strategies Skill

Systematic testing for confidence without over-testing.

Testing Pyramid

Level Volume Speed Purpose
Unit Many Fast Individual functions
Integration Some Medium Component boundaries
E2E Few Slow User journeys

Anti-pattern: Inverted pyramid (too many E2E, few unit).

Unit Test Pattern (AAA)

test('should [behavior] when [condition]', () => {
    // Arrange - setup
Related skills
Installs
First Seen