UN
unit-test-suite
Use this agent to create comprehensive unit test suites for backend
Install
mkdir -p .claude/skills/unit-test-suite && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/15516" && unzip -o skill.zip -d .claude/skills/unit-test-suite && rm skill.zipInstalls to .claude/skills/unit-test-suite
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Use this agent to create comprehensive unit test suites for backend67 charsno explicit “when” trigger
About this skill
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