Documentación oficial sobre Jest
- Instalaciones de desarrollo (super test es útil para probar Express)
npm install -D jest @types/jest ts-jest supertest
- Crear archivo de configuración de Jest
npx jest --init
Respuestas al jest -init:
- √ Would you like to use Jest when running "test" script in "package.json"? ...
yes
- √ Would you like to use Typescript for the configuration file? ...
yes
- √ Choose the test environment that will be used for testing »
node
- √ Do you want Jest to add coverage reports? ...
yes
- √ Which provider should be used to instrument code for coverage? »
v8
- √ Automatically clear mock calls, instances, contexts and results before every test? ...
yes
- En el archivo jest.config.ts configurar
preset: 'ts-jest',
testEnvironment: "jest-environment-node",
// Opcional - The paths to modules that run some code to configure or set up the testing environment before each test
// setupFiles: ['dotenv/config'],
setupFiles: ['<rootDir>/.jest/set-env-vars.ts'],
- Crear archivo
set-env-vars.ts
en la carpeta.jest/
import { config } from 'dotenv'; // `npm i -D dotenv`
import { resolve } from 'path';
// Cargar variables de entorno desde .env.test
config({ path: resolve(__dirname, '../.env.test') });
- Crear scripts en el package.json
"test": "jest",
"test:watch": "jest --watch",
"test:watch": "jest --watchAll",
"test:watchdetect": "jest --watchAll --detectOpenHandles",
"test:coverage": "jest --coverage"