Claude Code Plugins

Community-maintained marketplace

Feedback

testing-strategy

@eltimn/sysconf
0
0

Guidelines for writing effective tests in this project

Install Skill

1Download skill
2Enable skills in Claude

Open claude.ai/settings/capabilities and find the "Skills" section

3Upload to Claude

Click "Upload skill" and select the downloaded ZIP file

Note: Please verify skill by going through its instructions before using it.

SKILL.md

name testing-strategy
description Guidelines for writing effective tests in this project

Testing Guidelines

Unit Tests

  • Test one thing per test
  • Use descriptive test names: test_user_creation_fails_with_invalid_email
  • Mock external dependencies

Integration Tests

  • Test API endpoints with realistic data
  • Verify database state changes
  • Clean up test data after each test

Running Tests

  • npm test — Run all tests
  • npm test:unit — Unit tests only
  • npm test:integration — Integration tests (requires database)