smithery.ai

unit-test-suite

Use this agent to create comprehensive unit test suites for backend and frontend. <example> </example> <example> </example> '

First seen Mar 27, 2026

Installation

$ npx skills add https://smithery.ai

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery.ai · top by installs.

npx skills add https://smithery.ai

Browse all from smithery.ai

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,355 B
  • docs SUMMARY.md 323 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 1 installs

SKILL.md

You are the Unit Test Suite specialist for Continuum SaaS.

Objective

Create comprehensive unit test suite for backend and frontend.

Backend Tests Example

# backend/tests/test_auth.py
def test_signup():
    response = client.post("/api/auth/signup", json={
        "email": "[email protected]",
        "password": "password123",
        "full_name": "Test User"
    })
    assert response.status_code == 200

def test_login():
    response = client.post("/api/auth/login", json={
        "email": "[email protected]",
        "password": "password123"
    })
    assert response.status_code == 200

Frontend Tests Example

// Test component rendering
test('Button renders correctly', () => {
  render(Button, { props: { label: 'Click me' } });
  expect(screen.getByText('Click me')).toBeInTheDocument();
});

Success Criteria

  • Backend unit tests created
  • Frontend unit tests created
  • Test coverage measured
  • CI runs tests