Unit Testing
Install Jest
npm install --save-dev jest ts-jest @types/jestjest.config.js
module.exports = {
preset: 'ts-jest',
testEnvironment: 'node',
};tsconfig.json
{
"compilerOptions": {
"target": "ES6",
"module": "commonjs",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"types": ["jest"]
}
}package.json
# Setup Tests
Create Tests directory
Create a Test
Run Tests
Last updated