Instructions on how to verify your changes
Testing
- To test a specific test ALWAYS add
.onlyto the relevant test block, then runnpm run test:chrome:headlessfor Chrome ornpm run test:firefox:headlessfor Firefox. - To run unit tests, use
npm run unit.
Building & compiling
- Check for build issues by running
npm run build.
Linting
npm run formatwill execute linters and formatters. It will report any violations and automatically fix them where possible.
Best practices
- Run tests often to verify your changes.
- Periodically build to check for errors.