jest-testing
Installation
SKILL.md
Jest Testing Skill
Master testing Node.js applications with Jest - the delightful JavaScript testing framework.
Quick Start
Test in 3 steps:
- Install -
npm install --save-dev jest supertest - Write Test - Create
*.test.jsfiles - Run -
npm test
Core Concepts
Basic Test Structure
// sum.test.js
const sum = require('./sum');