-
Notifications
You must be signed in to change notification settings - Fork 1
Testing_Guide
Jasonlin1198 edited this page May 31, 2020
·
4 revisions
- Tool Overview
- Jest
- Useful Links
The tools we use for testing include:
- Jest
After cloning our repository, run the command:
npm install
Jest is a JavaScript Testing Framework with a focus on simplicity.
test('1 is 1', () => {
expect(1).toBe(1);
});
We set it up to run all
npm run test