npm i -D Jest
touch nameOfFile.js
touch nameOfFile.test.js
To Run the Test In Your Package.json Replace the value for the key test to simply jest under your scripts
"scripts": {
"test": "jest"
},
npm test
- ToBe used for Primitive Types: num, string
- ToEqual Used For Objects/Array(Reference Types)
npm i axios