utilities/stryker.conf.js

30 lines
642 B
JavaScript
Raw Permalink Normal View History

2020-03-25 17:01:22 +01:00
/*
* Copyright (C) Sapphirecode - All Rights Reserved
* This file is part of utilities which is released under MIT.
2020-03-25 17:01:22 +01:00
* See file 'LICENSE' for full license details.
* Created by Timo Hocker <timo@scode.ovh>, May 2020
2020-03-25 17:01:22 +01:00
*/
2020-03-14 14:12:44 +01:00
'use strict';
/**
* @type {import('@stryker-mutator/api/core').StrykerOptions}
*/
module.exports = {
packageManager: 'yarn',
reporters: [
'clear-text',
'progress'
],
2020-10-05 20:37:48 +02:00
testRunner: 'jasmine',
jasmineConfigFile: 'jasmine.json',
coverageAnalysis: 'perTest',
2020-11-05 08:06:14 +01:00
mutate: [
'**/*.js',
'**/*.ts',
'!**/test/**/*',
'!**/spec/**/*',
'!stryker.conf.js'
]
2020-03-14 14:12:44 +01:00
};