Use when generating tests for backend code (Express routes, MongoDB models, Node services) - analyzes file type, detects test framework from package.json, generates comprehensive tests with setup/teardown and edge case coverage
/plugin marketplace add 9tykeshav/mern-ninja-cc/plugin install mern-ninja@mern-ninja-marketplaceThis skill inherits all available tools. When active, it can use any tool Claude has access to.
reference/test-patterns.mdreference/test-setup.mdGenerate comprehensive backend tests for MERN stack code. Analyzes file type, detects project conventions, produces tests that actually run.
Philosophy: Smart defaults, zero config. Detect everything from project.
<workflow>Copy and track progress:
Before generating tests, verify setup:
package.json for test framework (Jest/Vitest/Mocha)mongodb-memory-server (needed for integration tests)__tests__/ vs tests/)Stop if: No test framework and user declines setup.
| Pattern | Type | Test Approach |
|---|---|---|
routes/, *.routes.js | Route | Integration (Supertest + real DB) |
controllers/ | Controller | Integration |
services/ | Service | Unit (mocked deps) |
models/, *.model.js | Model | Unit (validation tests) |
middleware/ | Middleware | Unit (mock req/res/next) |
utils/, helpers/ | Utility | Unit (pure functions) |
Override: User can specify --unit or --integration.
Process files sequentially with progress. User can stop anytime.
Each test includes:
Reference: See test-patterns.md for complete code examples.
Generated: X test files
Coverage: Y test cases total
Next: Run `npm test` to verify
</workflow>
<quick-reference>
| File Type | Imports | DB Setup |
|---|---|---|
| Route | supertest, mongodb-memory-server | Real (in-memory) |
| Service | jest | Mocked |
| Model | mongoose | Mocked |
| Middleware | jest | None |
describe('[Resource] [Method]', () => {
describe('success cases', () => {
it('should [expected behavior]', async () => {});
});
describe('validation errors', () => {
it('should return 400 for [invalid case]', async () => {});
});
describe('edge cases', () => {
it('should handle [edge case]', async () => {});
});
});
</quick-reference>
<checklists>
package.json"test": "jest")| Mistake | Fix |
|---|---|
| Starting server in tests | Import app, let Supertest handle it |
| No DB cleanup | Add afterEach with deleteMany({}) |
| Testing implementation | Test behavior through HTTP interface |
| Missing async/await | Await async operations |
| Mocking in integration tests | Use real DB for integration |
Load when implementing specific patterns:
| When | Reference |
|---|---|
| Writing any test | test-patterns.md |
| Setting up test infrastructure | test-setup.md |
Use when working with Payload CMS projects (payload.config.ts, collections, fields, hooks, access control, Payload API). Use when debugging validation errors, security issues, relationship queries, transactions, or hook behavior.
Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.