Update CONTRIBUTING.md

This commit is contained in:
Kristjan Esperanto 2021-12-26 06:54:46 +01:00 committed by GitHub
parent 58c48b1b21
commit 855860c00c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -22,11 +22,13 @@ We use [StyleLint](https://stylelint.io) to lint our CSS. Our configuration is i
To run StyleLint, use `npm run lint:css`.
## End-to-End Testing
## Testing
We use [Jest](https://jestjs.io) for JavaScript Testing.
We use [Jest](https://jestjs.io) for JavaScript testing.
To run the test, use `npx jest tests/e2e/env_spec.js`.
To run all tests, use `npm run test`.
The specific test commands are defined in `package.json`. So you can also run the specific tests with other commands, e.g. `npm run test:unit` or `npx jest tests/e2e/env_spec.js`.
## Submitting Issues