From 291f011226fa62f0780501038e00534197c1a3f9 Mon Sep 17 00:00:00 2001 From: Timo Hocker Date: Thu, 5 Nov 2020 08:06:14 +0100 Subject: [PATCH] adapt stryker --- filter.js | 7 +++++++ stryker.conf.js | 8 +++++++- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/filter.js b/filter.js index 29851f4..402b67d 100644 --- a/filter.js +++ b/filter.js @@ -1,3 +1,10 @@ +/* + * Copyright (C) Sapphirecode - All Rights Reserved + * This file is part of utilities which is released under MIT. + * See file 'LICENSE' for full license details. + * Created by Timo Hocker , November 2020 + */ + 'use strict'; function get_element_field (element, carried_data, field) { diff --git a/stryker.conf.js b/stryker.conf.js index aded96a..6a73a97 100644 --- a/stryker.conf.js +++ b/stryker.conf.js @@ -19,5 +19,11 @@ module.exports = { testRunner: 'jasmine', jasmineConfigFile: 'jasmine.json', coverageAnalysis: 'perTest', - mutate: [ 'index.js' ] + mutate: [ + '**/*.js', + '**/*.ts', + '!**/test/**/*', + '!**/spec/**/*', + '!stryker.conf.js' + ] };