crypto-helper/stryker.conf.js

24 lines
570 B
JavaScript
Raw Normal View History

2020-03-25 17:02:59 +01:00
/*
* Copyright (C) Sapphirecode - All Rights Reserved
* This file is part of Crypto-Helper which is released under MIT.
* See file 'LICENSE' for full license details.
* Created by Timo Hocker <timo@scode.ovh>, March 2020
*/
2020-03-09 10:12:40 +01:00
'use strict';
module.exports = function cfg (config) {
config.set ({
mutator: 'javascript',
packageManager: 'yarn',
reporters: [
'clear-text',
'progress'
],
testRunner: 'command',
transpilers: [],
coverageAnalysis: 'all',
mutate: [ 'index.js' ]
});
};