clean-typescript-tests

Installation
SKILL.md

Clean Tests

T1: Insufficient Tests

Test everything that could possibly break. Use coverage tools as a guide, not a goal.

// Bad - only tests happy path
test("divide", () => {
  expect(divide(10, 2)).toBe(5);
});

// Good - tests edge cases too
test("divide normal", () => {
  expect(divide(10, 2)).toBe(5);
});
Installs
19
GitHub Stars
1
First Seen
May 9, 2026
clean-typescript-tests — gosukiwi/clean-code-react