An Automated Testing Project for practicing Unit Testing with Mocha and Chai.
- Clone this respositary to your machine.
- Go into the project's root directory, and run the command
npm install
. - Run the test suit using the command
npm test
.
If the command npm test
does not work, you may need to install mocha globally on your machine.Do this with the command npm install -g mocha
.
- We learned how to use Chai's assertion syntax for unit tests.
- We learned the Node.js and also improved our skills working on Visual Studio Code.