docs(readme): changed a broken command example

fixed case sensitive issue in jest command which cause an error
This commit is contained in:
Muhammed Rahif 2021-12-23 13:42:19 +05:30 committed by GitHub
parent 0d00bb14cb
commit b360c5984e
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`: You can use the following example configuration in `package.json`:
```json ```json
"scripts": { "scripts": {
"test": "jest --ci --reporters=default --reporters=jest-Junit" "test": "jest --ci --reporters=default --reporters=jest-junit"
}, },
"devDependencies": { "devDependencies": {
"jest": "^26.5.3", "jest": "^26.5.3",