Testing
How to test your code in the front-end.
TL;DR
To test the front-end code, run these commands:
npm run types
npm run lint
npm run jest
or all at once:
npm run test
📄️ Typing
How to check that the types of our code is correct?
📄️ Linter and Formatter
The Linter
📄️ Integration Tests
Integration tests allows us to test the features of the code.