forked from BrainTease/Brain-Storm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstryker.conf.js
More file actions
39 lines (38 loc) · 957 Bytes
/
Copy pathstryker.conf.js
File metadata and controls
39 lines (38 loc) · 957 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
33
34
35
36
37
38
39
// @ts-check
/** @type {import('@stryker-mutator/api').StrykerOptions} */
const config = {
_comment: 'This config was generated using "stryker init". Please take a look at: https://stryker-mutator.io/docs/stryker-js/configuration/ for more information.',
packageManager: 'npm',
reporters: ['html', 'clear-text', 'progress', 'json'],
htmlReporter: {
baseDir: 'coverage/mutation',
},
jsonReporter: {
baseDir: 'coverage/mutation',
},
testRunner: 'jest',
jest: {
projectType: 'custom',
configFile: 'jest.config.js',
},
mutate: [
'apps/backend/src/**/*.ts',
'apps/frontend/src/**/*.ts',
'apps/frontend/src/**/*.tsx',
'!**/*.spec.ts',
'!**/*.test.ts',
'!**/*.spec.tsx',
'!**/*.test.tsx',
'!**/index.ts',
'!**/types.ts',
],
thresholds: {
high: 80,
medium: 60,
low: 40,
},
timeoutMS: 5000,
timeoutFactor: 1.25,
maxConcurrentTestRunners: 4,
};
export default config;