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