From a0f1ecda2e59010d8965ab5e56202177b2dee696 Mon Sep 17 00:00:00 2001 From: Suhiteswar <105535366+suhit123@users.noreply.github.com> Date: Sat, 28 Oct 2023 00:42:48 +0530 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e51a34aee5..ad783bc003 100644 --- a/README.md +++ b/README.md @@ -161,7 +161,7 @@ git checkout 9.0 && git fetch && git reset --hard origin/9.0 && git merge --no-f The unit tests are executed with [jest](https://facebook.github.io/jest/). To run the unit tests, execute `make test` in your shell. -Adding unit tests is fairly simple, just create a file on the same tree level as your changed/new feature, named `[filename].spec.js` and karma will execute all tests found within the spec file, other than that, just orient yourself on the existing tests. +Adding unit tests is fairly simple, just create a file on the same directory level as your changed/new feature, named `[filename].spec.js` and karma will execute all tests found within the spec file, other than that, just orient yourself on the existing tests. Use `it.only(() => {})` and `describe.only(() => {})` if you want to run a specific test and not the whole test suite.