With Studio's services running, you may run tests with the following commands:
# backend
make test
# frontend
yarn run test
View more testing tips
Front-end linting is run using:
yarn run lint-frontend
Some linting errors can be fixed automatically by running:
yarn run lint-frontend:format
Make sure you've set up pre-commit hooks as described above. This will ensure that linting is automatically run on staged changes before every commit.