Setup
- init npm project
npm init -y
- install Jest
npm install -D jest
- add
jest
to scripts in package.json
{
...
"scripts": {
"test": "jest"
},
...
}
Author: Jaga Santagostino
npm init -y
npm install -D jest
jest
to scripts in package.json{
...
"scripts": {
"test": "jest"
},
...
}
Author: Jaga Santagostino