flaky-test-detective

Installation
SKILL.md

Flaky Test Detective

Diagnose and eliminate flaky tests systematically.

Common Flaky Test Patterns

1. Timing Issues

// ❌ Flaky: Race condition
test("should load user data", async () => {
  render(<UserProfile userId="123" />);

  // Race condition - might pass or fail
  expect(screen.getByText("John Doe")).toBeInTheDocument();
});
Installs
8
GitHub Stars
2
First Seen
Feb 16, 2026
flaky-test-detective — monkey1sai/openai-cli