From 855860c00ca9af0877c4b9f81e878da6a4cbc71c Mon Sep 17 00:00:00 2001 From: Kristjan Esperanto <35647502+KristjanESPERANTO@users.noreply.github.com> Date: Sun, 26 Dec 2021 06:54:46 +0100 Subject: [PATCH] Update CONTRIBUTING.md --- .github/CONTRIBUTING.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 3d2d1339..3563f85e 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -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