fix stryker config

This commit is contained in:
Timo Hocker 2020-03-14 14:11:31 +01:00
parent c7892d6097
commit e89ae2759a
2 changed files with 17 additions and 13 deletions

17
stryker.conf.js Normal file
View File

@ -0,0 +1,17 @@
'use strict';
/**
* @type {import('@stryker-mutator/api/core').StrykerOptions}
*/
module.exports = {
mutator: 'javascript',
packageManager: 'yarn',
reporters: [
'clear-text',
'progress'
],
testRunner: 'command',
transpilers: [],
coverageAnalysis: 'all',
mutate: [ 'index.js' ]
};

View File

@ -1,13 +0,0 @@
{
"$schema": "https://raw.githubusercontent.com/stryker-mutator/stryker/master/packages/api/schema/stryker-core.json",
"mutator": "javascript",
"packageManager": "yarn",
"reporters": [
"clear-text",
"progress"
],
"testRunner": "command",
"transpilers": [],
"coverageAnalysis": "all",
"mutate": ["index.js"]
}