Update jest-Junit part of Readme

I had issues with setting --reporters=jest-Junit". I found I needed to use --reporters=jest-junit" instead.
This commit is contained in:
Ryan Casburn 2022-06-05 14:46:30 -04:00 committed by GitHub
parent 0d00bb14cb
commit 6bd7855a9d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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",