mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2026-03-17 04:53:49 +00:00
Added stryker to the project
This commit is contained in:
17
stryker.conf.js
Normal file
17
stryker.conf.js
Normal file
@@ -0,0 +1,17 @@
|
||||
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,
|
||||
},
|
||||
});
|
||||
Reference in New Issue
Block a user