-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjest.config.cjs
More file actions
32 lines (32 loc) · 854 Bytes
/
jest.config.cjs
File metadata and controls
32 lines (32 loc) · 854 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
module.exports = {
testEnvironment: 'node',
resolver: './jest-resolver.cjs',
transform: {
'^.+\\.js$': ['babel-jest', { configFile: './babel.config.cjs' }]
},
transformIgnorePatterns: [
'/node_modules/(?!\\.pnpm|\\.aspect_rules_js|probot|@probot|@octokit|before-after-hook|universal-user-agent|universal-github-app-jwt|octokit-auth-probot)'
],
testMatch: [
'**/__tests__/unit/**/*.test.js',
'**/__tests__/integration/**/*.test.js',
'**/__tests__/smoke/**/*.test.js',
'**/__tests__/e2e/**/*.test.js'
],
collectCoverageFrom: [
'src/**/*.js',
'!src/dashboard.js',
'!src/dashboard-client.js',
'!src/htmx.min.js',
'!src/idiomorph-ext.min.js',
'index.js',
'!**/node_modules/**'
],
coverageThreshold: {
global: {
lines: 80,
functions: 80,
branches: 70
}
}
};