-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjest.config.cjs
40 lines (40 loc) · 1.13 KB
/
jest.config.cjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
const { pathsToModuleNameMapper } = require('ts-jest')
const { compilerOptions } = require('./tsconfig.json')
/*
* For a detailed explanation regarding each configuration property and type check, visit:
* https://jestjs.io/docs/configuration
*/
/** @type {import('jest').Config} */
module.exports = {
clearMocks: true,
coverageDirectory: 'coverage',
coveragePathIgnorePatterns: ['/node_modules/', './stories', '/.storybook/', './lib'],
coverageProvider: 'v8',
testEnvironment: 'jsdom',
moduleFileExtensions: ['ts', 'js', 'tsx', 'jsx'],
transform: {
'^.+\\.[jt]sx?$': [
'@swc/jest',
{
jsc: {
transform: {
react: {
runtime: 'automatic',
},
},
},
},
],
},
setupFilesAfterEnv: ['<rootDir>/test/setupTest.ts'],
moduleNameMapper: {
'\\.svg$': '<rootDir>/__mocks__/svg.js',
...pathsToModuleNameMapper(compilerOptions.paths, { prefix: '<rootDir>' }),
},
collectCoverageFrom: [
'<rootDir>/src/**/*.{js,jsx,ts,tsx}',
'!<rootDir>/src/**/index.ts',
'!<rootDir>/src/**/*.d.ts',
'!<rootDir>/src/types/**/*',
],
}