We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f76e251 commit 1f86460Copy full SHA for 1f86460
1 file changed
jest.config.integration.js
@@ -17,6 +17,10 @@ const baseConfig = require('./jest.config.js');
17
*/
18
module.exports = {
19
...baseConfig,
20
+ // Unit coverage already owns the repo-wide collectCoverageFrom list. Let
21
+ // integration tests report coverage for the production files they execute so
22
+ // CI shards stay small while still contributing to merged PR coverage.
23
+ collectCoverageFrom: undefined,
24
testPathIgnorePatterns: (baseConfig.testPathIgnorePatterns || []).filter(
25
(pattern) => !pattern.includes('integration'),
26
),
0 commit comments