Lines Matching refs:coverage
155 ## Code coverage reports
157 Code coverage reports can help you understand how much of your code is tested.
159 If you'd like to see code coverage report in your project using the HTML format, add the following …
167 "!**/coverage/**",
175 … above snippet allows Jest to collect coverage of all **.js** and **.jsx** files that are not insi…
177 …coverage** directory created in your project. Find the **index.html** file within this directory a…
179 …ndex.html** file to git. To prevent it from being tracked, you can add `coverage/**/*` in the **.g…
189 "test": "jest --watch --coverage=false --changedSince=origin/main",
192 "testDebug": "jest -o --watch --coverage=false",
194 // displays code coverage in cli and updates the code coverage html
198 "updateSnapshots": "jest -u --coverage=false"