-
-
Notifications
You must be signed in to change notification settings - Fork 240
Expand file tree
/
Copy pathjest.config.js
More file actions
32 lines (32 loc) · 810 Bytes
/
jest.config.js
File metadata and controls
32 lines (32 loc) · 810 Bytes
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
export default {
testEnvironment: 'jsdom',
setupFilesAfterEnv: ['<rootDir>/test/setup.js'],
moduleNameMapper: {
'\\.(css|scss)$': '<rootDir>/test/styleMock.js'
},
testMatch: [
'<rootDir>/test/**/*.test.js'
],
testPathIgnorePatterns: [
'/node_modules/',
'/dist/',
'/examples/'
],
collectCoverageFrom: [
'src/**/*.{js,ts}',
'!src/**/*.d.ts',
'!src/**/*.test.{js,ts}',
'!src/index.ts'
],
coverageDirectory: 'coverage',
coverageReporters: ['text', 'lcov', 'html'],
transform: {
'^.+\\.ts$': ['@swc/jest', {
jsc: {
parser: {
syntax: 'typescript',
},
},
}],
},
};