From 6bd7855a9d6aac640eb86dee126a8e2774c67c75 Mon Sep 17 00:00:00 2001 From: Ryan Casburn <63560854+ryancasburn-KAI@users.noreply.github.com> Date: Sun, 5 Jun 2022 14:46:30 -0400 Subject: [PATCH] Update jest-Junit part of Readme I had issues with setting --reporters=jest-Junit". I found I needed to use --reporters=jest-junit" instead. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a2d2d4a0..acad249d 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",