From 5fa464c26b7434d0674f773406978054a4791d09 Mon Sep 17 00:00:00 2001 From: Job Dufitumukiza Date: Sun, 27 Oct 2024 23:19:56 +0300 Subject: [PATCH 1/2] added node_modules in .gitignore --- .gitignore | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.gitignore b/.gitignore index d9b0982658..0ad96669fa 100644 --- a/.gitignore +++ b/.gitignore @@ -74,3 +74,8 @@ test.sh .docker/** !**/.gitkeep + +# stryker temp files +.stryker-tmp +#node_modules +node_modules From e8126a9533d6d51c81e78c2c3f9bbf80a3d00416 Mon Sep 17 00:00:00 2001 From: Job Dufitumukiza Date: Sun, 3 Nov 2024 19:47:47 +0300 Subject: [PATCH 2/2] configuration file for stryker --- stryker.config.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 stryker.config.json diff --git a/stryker.config.json b/stryker.config.json new file mode 100644 index 0000000000..55e98e37a5 --- /dev/null +++ b/stryker.config.json @@ -0,0 +1,13 @@ +{ + "$schema": "./node_modules/@stryker-mutator/core/schema/stryker-schema.json", + "_comment": "This config was generated using 'stryker init'. Please take a look at: https://stryker-mutator.io/docs/stryker-js/configuration/ for more information.", + "packageManager": "npm", + "reporters": [ + "html", + "clear-text", + "progress" + ], + "testRunner": "mocha", + "testRunner_comment": "Take a look at https://stryker-mutator.io/docs/stryker-js/mocha-runner for information about the mocha plugin.", + "coverageAnalysis": "perTest" +} \ No newline at end of file