Skip to content

Commit

Permalink
excluded not required patterns
Browse files Browse the repository at this point in the history
  • Loading branch information
Kiran-Siluveru-Microsoft committed Oct 10, 2024
1 parent bd53688 commit fe316c7
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions ResearchAssistant/App/frontend/jest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,18 @@ const config: Config.InitialOptions = {
statements: 80,
},
},
coveragePathIgnorePatterns: [
'<rootDir>/node_modules/', // Ignore node_modules
'<rootDir>/__mocks__/', // Ignore mocks
'<rootDir>/src/api/',
'<rootDir>/src/mocks/',
'<rootDir>/src/test/',
'<rootDir>/src/index.tsx',
'<rootDir>/src/vite-env.d.ts',
'<rootDir>/src/components/QuestionInput/index.ts',
'<rootDir>/src/components/Answer/index.ts',
'<rootDir>/src/state',
],
};

export default config;

0 comments on commit fe316c7

Please sign in to comment.