btholt / btholt/complete-intro-to-react-v9

Coverage Testing

Open Beginner friendly
#22 0 comments 0 reactions 0 assignees View on GitHub
Dominant language
JavaScript
Stars
771
Forks
101
PR merge metrics
No merged PRs in 30d

Description

Towards the end of this section where it's talking about `istanbul` (not constantinople):
https://react-v9.holt.courses/lessons/testing/browser-tests

The `coverage` section looks like this:
```
coverage: {
provider: "istanbul"
reporter: ["text", "json", "html"],
},
```

There is a missing comma after `istanbul`. Should be:
```
coverage: {
provider: "istanbul",
reporter: ["text", "json", "html"],
},
```

Contributor guide

No contributing guide indexed for this repository

Research direction

Open the browser-tests lesson at https://react-v9.holt.courses/lessons/testing/browser-tests and locate the coverage section discussing istanbul. Correct the missing comma after "istanbul" in the configuration snippet, then verify the displayed example matches the corrected version in the issue.

Written by the indexing model from the issue text.

Assessment

Tech stack
javascript
Domain
documentation
Issue type
Documentation
Difficulty
1/5
Estimated time
Under an hour
Activity status
Active
Clarity
Clearly specified
Newbie friendliness
92/100

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.