diff --git a/.gitignore b/.gitignore index 9232511851..190784d23b 100644 --- a/.gitignore +++ b/.gitignore @@ -74,4 +74,6 @@ link-plugins.sh test.sh .docker/** -!**/.gitkeep \ No newline at end of file +!**/.gitkeep +# stryker temp files +.stryker-tmp diff --git a/install/package.json b/install/package.json index cb5eb4e4ea..6a906c0101 100644 --- a/install/package.json +++ b/install/package.json @@ -28,6 +28,7 @@ ] }, "dependencies": { + "@stryker-mutator/mocha-runner": "^8.6.0", "@adactive/bootstrap-tagsinput": "0.8.2", "@fontsource/inter": "5.0.18", "@fontsource/poppins": "5.0.14", diff --git a/stryker.config.json b/stryker.config.json new file mode 100644 index 0000000000..faad2dd08d --- /dev/null +++ b/stryker.config.json @@ -0,0 +1,9 @@ +{ + "$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": [], + "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