shlink-web-client/stryker.conf.js

18 lines
393 B
JavaScript
Raw Normal View History

2019-04-22 00:03:37 +03:00
module.exports = (config) => config.set({
mutate: [ 'src/**/*.js' ],
mutator: 'javascript',
testRunner: 'jest',
reporters: [ 'progress', 'clear-text', 'html' ],
coverageAnalysis: 'off',
jest: {
projectType: 'custom',
config: require(`${__dirname}/jest.config.js`),
enableFindRelatedTests: true,
},
thresholds: {
high: 80,
low: 60,
break: null,
},
});