Skip to content

Latest commit

 

History

History
30 lines (20 loc) · 564 Bytes

dev_tools.md

File metadata and controls

30 lines (20 loc) · 564 Bytes

Local development tools

Running tests

With Studio's services running, you may run tests with the following commands:

# backend
make test
# frontend
yarn run test

View more testing tips

Linting

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.