From b360c5984e116ac65d3045e994646a737984e73c Mon Sep 17 00:00:00 2001 From: Muhammed Rahif <73386156+Muhammed-Rahif@users.noreply.github.com> Date: Thu, 23 Dec 2021 13:42:19 +0530 Subject: [PATCH] docs(readme): changed a broken command example fixed case sensitive issue in jest command which cause an error --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a2d2d4a..acad249 100644 --- a/README.md +++ b/README.md @@ -263,7 +263,7 @@ It will create test results in Junit XML format which can be then processed by t You can use the following example configuration in `package.json`: ```json "scripts": { - "test": "jest --ci --reporters=default --reporters=jest-Junit" + "test": "jest --ci --reporters=default --reporters=jest-junit" }, "devDependencies": { "jest": "^26.5.3",