Agent Skills: Test Fixing Skill

Automatically diagnose and fix failing tests by analyzing errors, updating assertions, and refactoring test code

UncategorizedID: ljchg12-hue/dotfiles/test-fixing

Install this agent skill to your local

pnpm dlx add-skill https://github.com/ljchg12-hue/dotfiles/tree/HEAD/skills/test-fixing

Skill Files

Browse the full folder contents for test-fixing.

Download Skill

Loading file tree…

skills/test-fixing/SKILL.md

Skill Metadata

Name
test-fixing
Description
Automatically diagnose and fix failing tests by analyzing errors, updating assertions, and refactoring test code

Test Fixing Skill

Diagnose and fix failing tests automatically using error analysis and intelligent refactoring.

When to Use

  • Failing test suite
  • Flaky tests
  • Test maintenance
  • CI/CD pipeline failures

Core Capabilities

  • Error analysis and root cause identification
  • Assertion updates
  • Mock/stub fixing
  • Timeout adjustments
  • Race condition detection
  • Test data refresh
  • Dependency updates

Common Fixes

// Fix 1: Update assertion
- expect(result).toBe(5);
+ expect(result).toBe(6); // Updated expected value

// Fix 2: Add async/await
- it('should fetch data', () => {
-   const data = fetchData();
+ it('should fetch data', async () => {
+   const data = await fetchData();

// Fix 3: Fix mock
- jest.mock('./api');
+ jest.mock('./api', () => ({
+   fetchUser: jest.fn().mockResolvedValue({ id: 1 })
+ }));

// Fix 4: Increase timeout
- it('slow test', () => {
+ it('slow test', () => {
+   jest.setTimeout(10000);

Best Practices

  • Analyze error messages first
  • Check for environmental issues
  • Update test data regularly
  • Fix flaky tests immediately
  • Run tests in isolation

Resources

  • Jest: https://jestjs.io/
  • Testing Library: https://testing-library.com/