cse110-sp23-group24 / cse110-sp23-group24-Final-Project

0 stars 3 forks source link

Jest CI/ CD Setup #29

Closed beliang closed 1 year ago

beliang commented 1 year ago

Have set up Jest for unit testing in javascript. Make sure test files are named name.test.js where name is the name of the javascript file you are trying to test.

Make sure you have "test": "jest" in your scripts section in the package.json file for jest to run.

To run unit tests: npm test