mirror of
https://github.com/twentyhq/twenty.git
synced 2024-11-30 23:23:47 +03:00
43 lines
1.0 KiB
TypeScript
43 lines
1.0 KiB
TypeScript
export default {
|
|
setupFilesAfterEnv: ['./src/setupTests.ts'],
|
|
testEnvironment: 'jsdom',
|
|
transform: {
|
|
'^.+\\.(ts|js|tsx|jsx)$': '@swc/jest',
|
|
},
|
|
moduleNameMapper: {
|
|
'~/(.+)': '<rootDir>/src/$1',
|
|
'@/(.+)': '<rootDir>/src/modules/$1',
|
|
'@testing/(.+)': '<rootDir>/src/testing/$1',
|
|
'\\.(jpg|jpeg|png|gif|webp|svg|svg\\?react)$':
|
|
'<rootDir>/__mocks__/imageMock.js',
|
|
},
|
|
extensionsToTreatAsEsm: ['.ts', '.tsx'],
|
|
coverageThreshold: {
|
|
global: {
|
|
statements: 70,
|
|
lines: 70,
|
|
functions: 60,
|
|
},
|
|
},
|
|
collectCoverage: true,
|
|
collectCoverageFrom: ['<rootDir>/src/**/*.ts'],
|
|
coveragePathIgnorePatterns: [
|
|
'states/.+State.ts$',
|
|
'states/selectors/*',
|
|
'contexts/.+Context.ts',
|
|
'testing/*',
|
|
'tests/*',
|
|
'config/*',
|
|
'graphql/queries/*',
|
|
'graphql/mutations/*',
|
|
'graphql/fragments/*',
|
|
'types/*',
|
|
'constants/*',
|
|
'generated-metadata/*',
|
|
'generated/*',
|
|
'__stories__/*',
|
|
'display/icon/index.ts',
|
|
],
|
|
// coverageDirectory: '<rootDir>/coverage/',
|
|
};
|