We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unit test coverage has dropped from from 100% across the board to
------------------------------------|---------|----------|---------|---------|------------------- File | % Stmts | % Branch | % Funcs | % Lines | Uncovered Line #s ------------------------------------|---------|----------|---------|---------|------------------- All files | 82.12 | 96.5 | 90.62 | 80.78 |
This is mostly down to the .stories.tsx files being included for tests.
.stories.tsx
Adding the following lines to the collectCoverageFrom section in packages/webui/jest.config.ts will eliminate these:
collectCoverageFrom
packages/webui/jest.config.ts
'!./src/**/*.stories.{ts,tsx}', '!**/*__mocks__*/**',
...however, coverage is still down and needs to be boosted back to 100%:
----------------------------|---------|----------|---------|---------|------------------- File | % Stmts | % Branch | % Funcs | % Lines | Uncovered Line #s ----------------------------|---------|----------|---------|---------|------------------- All files | 98.35 | 97.41 | 99.57 | 98.43 |
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Unit test coverage has dropped from from 100% across the board to
This is mostly down to the
.stories.tsx
files being included for tests.Adding the following lines to the
collectCoverageFrom
section inpackages/webui/jest.config.ts
will eliminate these:...however, coverage is still down and needs to be boosted back to 100%:
The text was updated successfully, but these errors were encountered: