chore (ui) : add coverage path ignore patterns (#9628)

This commit is contained in:
Sachin Chaurasiya 2023-01-06 10:14:29 +05:30 committed by GitHub
parent eefbfefe31
commit b12e919f3b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -34,6 +34,12 @@ module.exports = {
'<rootDir>/src/**/*.{ts,tsx,js,jsx}', // All files in subdirectories under src/app
'!<rootDir>/src/*', // Exclude files directly under src/app
],
coveragePathIgnorePatterns: [
'<rootDir>/src/@types/*',
'<rootDir>/src/interface/*',
'<rootDir>/src/generated/*',
'<rootDir>/src/enums/*',
],
// TypeScript
// preset: 'ts-jest',