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);