Cursor Skill

writing-tests

Analyze existing code and write comprehensive unit and integration tests for it. Detects the test framework, identifies untested code paths, and generates tests with proper mocking, edge cases, and assertions. Use when the user asks to add tests, improve coverage, or test a speci

LLM Mart · 0 points · 22 views 0 listing impressions 0 install-command copies
Virus-scanned Reviewed automatically before listing.

Full trust report

Download spencerpauly-awesome-cursor-skills-resources_writing-tests-99cd265.zip · 1 KB
Part of spencerpauly/awesome-cursor-skills — 65 skills

Install

skills CLI npx skills add https://github.com/spencerpauly/awesome-cursor-skills/tree/main/resources/writing-tests
Claude Code claude plugin marketplace add https://llmmart.ai/marketplace.json && claude plugin install spencerpauly-awesome-cursor-skills@llmmart
Git git clone https://github.com/spencerpauly/awesome-cursor-skills.git

The skills CLI installs just this skill, for any of its supported agents. Claude Code installs the whole spencerpauly/awesome-cursor-skills collection as a plugin from our marketplace. Git is the plain clone.

Skill manifest

Writing Tests

Use this skill when the user asks to add tests to existing code, improve test coverage, or write tests for a specific file or module.

Steps

  1. Detect the test setup — check what's already configured:

    # Check package.json for test runner
    cat package.json | grep -E "jest|vitest|mocha|playwright|cypress"
    

    Look for config files: vitest.config.ts, jest.config.ts, playwright.config.ts, .mocharc.*. Check for existing test files to understand the project's test patterns and conventions.

  2. If no test runner exists — set one up:

    npm install -D vitest @testing-library/react @testing-library/jest-dom
    

    Add a test script to package.json:

    { "test": "vitest run", "test:watch": "vitest" }
    
  3. Analyze the target code — read the file(s) to test and identify:

    • Public API: exported functions, classes, components, hooks
    • Code paths: conditionals, error handling, edge cases
    • Dependencies: external services, databases, APIs that need mocking
    • Side effects: file I/O, network calls, DOM mutations
  4. Create the test file — place it next to the source file or in a __tests__/ directory, matching the project's convention:

    • src/utils/format.tssrc/utils/format.test.ts
    • src/components/Button.tsxsrc/components/Button.test.tsx
  5. Write tests following this structure:

    import { describe, it, expect, vi } from "vitest";
    
    describe("functionName", () => {
      // Happy path
      it("returns formatted output for valid input", () => { ... });
    
      // Edge cases
      it("handles empty string", () => { ... });
      it("handles null/undefined input", () => { ... });
    
      // Error cases
      it("throws on invalid argument", () => { ... });
    
      // Boundary conditions
      it("handles maximum length input", () => { ... });
    });
    
  6. Mock external dependencies — don't make real API calls or database queries in unit tests:

    vi.mock("@/lib/db", () => ({
      query: vi.fn().mockResolvedValue([{ id: 1, name: "test" }]),
    }));
    

    For React components, mock hooks that fetch data:

    vi.mock("@/hooks/useUser", () => ({
      useUser: () => ({ user: { name: "Test" }, isLoading: false }),
    }));
    
  7. Test React components with Testing Library:

    import { render, screen, fireEvent } from "@testing-library/react";
    
    it("renders the button and handles click", () => {
      const onClick = vi.fn();
      render(<Button onClick={onClick}>Click me</Button>);
      fireEvent.click(screen.getByRole("button", { name: "Click me" }));
      expect(onClick).toHaveBeenCalledOnce();
    });
    
  8. Run the tests and verify they pass:

    npm test
    

    If any fail, fix the test or the code (depending on whether the test expectation or the implementation is wrong).

What to Test

  • Always test: public API, error handling, edge cases (empty, null, zero, negative), state transitions, async behavior
  • Skip testing: private implementation details, third-party library internals, simple getters/setters, type-only code

Notes

  • Match the project's existing test style — if they use test() instead of it(), follow that.
  • Don't test implementation details — test behavior and outputs, not internal method calls.
  • Use descriptive test names that explain the scenario: "returns 0 when cart is empty" not "test1".
  • One assertion concept per test — multiple expect calls are fine if they verify the same behavior.
  • For async code, always await the result or use resolves/rejects matchers.
Files (awesome-cursor-skills)
  • SKILL.md 3.9 KB
    ---
    name: writing-tests
    description: Analyze existing code and write comprehensive unit and integration tests for it. Detects the test framework, identifies untested code paths, and generates tests with proper mocking, edge cases, and assertions. Use when the user asks to add tests, improve coverage, or test a specific module.
    ---
    
    # Writing Tests
    
    Use this skill when the user asks to add tests to existing code, improve test coverage, or write tests for a specific file or module.
    
    ## Steps
    
    1. **Detect the test setup** — check what's already configured:
    
       ```bash
       # Check package.json for test runner
       cat package.json | grep -E "jest|vitest|mocha|playwright|cypress"
       ```
    
       Look for config files: `vitest.config.ts`, `jest.config.ts`, `playwright.config.ts`, `.mocharc.*`. Check for existing test files to understand the project's test patterns and conventions.
    
    2. **If no test runner exists** — set one up:
    
       ```bash
       npm install -D vitest @testing-library/react @testing-library/jest-dom
       ```
    
       Add a `test` script to `package.json`:
    
       ```json
       { "test": "vitest run", "test:watch": "vitest" }
       ```
    
    3. **Analyze the target code** — read the file(s) to test and identify:
       - **Public API**: exported functions, classes, components, hooks
       - **Code paths**: conditionals, error handling, edge cases
       - **Dependencies**: external services, databases, APIs that need mocking
       - **Side effects**: file I/O, network calls, DOM mutations
    
    4. **Create the test file** — place it next to the source file or in a `__tests__/` directory, matching the project's convention:
    
       - `src/utils/format.ts` → `src/utils/format.test.ts`
       - `src/components/Button.tsx` → `src/components/Button.test.tsx`
    
    5. **Write tests following this structure**:
    
       ```ts
       import { describe, it, expect, vi } from "vitest";
    
       describe("functionName", () => {
         // Happy path
         it("returns formatted output for valid input", () => { ... });
    
         // Edge cases
         it("handles empty string", () => { ... });
         it("handles null/undefined input", () => { ... });
    
         // Error cases
         it("throws on invalid argument", () => { ... });
    
         // Boundary conditions
         it("handles maximum length input", () => { ... });
       });
       ```
    
    6. **Mock external dependencies** — don't make real API calls or database queries in unit tests:
    
       ```ts
       vi.mock("@/lib/db", () => ({
         query: vi.fn().mockResolvedValue([{ id: 1, name: "test" }]),
       }));
       ```
    
       For React components, mock hooks that fetch data:
    
       ```ts
       vi.mock("@/hooks/useUser", () => ({
         useUser: () => ({ user: { name: "Test" }, isLoading: false }),
       }));
       ```
    
    7. **Test React components** with Testing Library:
    
       ```tsx
       import { render, screen, fireEvent } from "@testing-library/react";
    
       it("renders the button and handles click", () => {
         const onClick = vi.fn();
         render(<Button onClick={onClick}>Click me</Button>);
         fireEvent.click(screen.getByRole("button", { name: "Click me" }));
         expect(onClick).toHaveBeenCalledOnce();
       });
       ```
    
    8. **Run the tests** and verify they pass:
    
       ```bash
       npm test
       ```
    
       If any fail, fix the test or the code (depending on whether the test expectation or the implementation is wrong).
    
    ## What to Test
    
    - **Always test**: public API, error handling, edge cases (empty, null, zero, negative), state transitions, async behavior
    - **Skip testing**: private implementation details, third-party library internals, simple getters/setters, type-only code
    
    ## Notes
    
    - Match the project's existing test style — if they use `test()` instead of `it()`, follow that.
    - Don't test implementation details — test behavior and outputs, not internal method calls.
    - Use descriptive test names that explain the scenario: "returns 0 when cart is empty" not "test1".
    - One assertion concept per test — multiple `expect` calls are fine if they verify the same behavior.
    - For async code, always `await` the result or use `resolves`/`rejects` matchers.
    

Comments (0)

Sign in to join the conversation.

No comments yet.

Reviews (0)

No reviews yet.

Related