snapshot-test-refactorer

Installation
SKILL.md

Snapshot Test Refactorer

Replace brittle snapshots with meaningful, maintainable assertions.

Problems with Snapshot Tests

// ❌ Bad: Full component snapshot
test("renders UserProfile", () => {
  const { container } = render(<UserProfile user={mockUser} />);
  expect(container).toMatchSnapshot();
});
Installs
8
GitHub Stars
2
First Seen
Feb 16, 2026
snapshot-test-refactorer — monkey1sai/openai-cli