unit-testing

Installation
SKILL.md

Unit Testing

Test isolated business logic with fast, deterministic tests.

AAA Pattern (Arrange-Act-Assert)

describe('calculateDiscount', () => {
  test('applies 10% discount for orders over $100', () => {
    // Arrange
    const order = { items: [{ price: 150 }] };

    // Act
    const result = calculateDiscount(order);
Installs
4
GitHub Stars
193
First Seen
Jan 21, 2026
unit-testing — yonatangross/skillforge-claude-plugin