-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathjest.config.ts
36 lines (34 loc) · 880 Bytes
/
jest.config.ts
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
import type { Config } from 'jest';
const config: Config = {
clearMocks: true,
collectCoverageFrom: ['src/**/*.{ts,tsx}'],
maxWorkers: '50%',
moduleDirectories: ['node_modules', 'src', 'test'],
moduleNameMapper: {
'\\.(css|ttf|ico|png|svg|jpg)$': require.resolve('./test/emptyModule.ts'),
},
setupFilesAfterEnv: ['@testing-library/jest-dom/jest-globals'],
snapshotSerializers: ['@emotion/jest/serializer'],
testEnvironment: 'jsdom',
testMatch: ['**/*.test.(tsx|ts)'],
transform: {
'.*\\.(tsx?|jsx?)$': [
'@swc/jest',
{
jsc: {
parser: {
syntax: 'typescript',
tsx: true,
},
transform: {
react: {
runtime: 'automatic',
importSource: '@emotion/react',
},
},
},
},
],
},
};
export default config;