fix(react-virtualized): exclude examples from coverage - #302
Conversation
Qodo reviews are paused for this user.Troubleshooting steps vary by plan Learn more → On a Teams plan? Using GitHub Enterprise Server, GitLab Self-Managed, or Bitbucket Data Center? |
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: d81b96b44b
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| 'source-stripped/demo/**', | ||
| 'source-stripped/jest-setup.jsx', | ||
| 'source-stripped/TestUtils.jsx', | ||
| 'source-stripped/vendor/**', |
There was a problem hiding this comment.
Keep vendored runtime modules in coverage
When coverage is run, this pattern drops all source-stripped/vendor modules even though they are part of the shipped runtime path: AutoSizer.jsx and WindowScroller.jsx import vendor/detectElementResize, and Masonry/PositionCache.jsx imports vendor/intervalTree which imports binarySearchBounds. Since coverage.include is source-stripped/**, this exclusion hides real runtime code from the coverage result rather than just examples/tests, so coverage can pass while missing exercised package behavior.
Useful? React with 👍 / 👎.
Summary
Tests