integration-testing

Installation
SKILL.md

Integration Testing for Express APIs

Comprehensive patterns for testing Express.js applications with supertest, covering routes, middleware, authentication, and error handling.

Setup

Install Dependencies

npm install --save-dev supertest @types/supertest

Test Configuration

// test/setup.ts
import { beforeAll, afterAll, afterEach } from '@jest/globals';
import { prisma } from '../src/lib/prisma';
Installs
1
First Seen
Mar 3, 2026
integration-testing — karchtho/my-claude-marketplace