forked from hsaraujo/lightning-flow-scanner-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstryker.config.mjs
More file actions
23 lines (23 loc) · 845 Bytes
/
stryker.config.mjs
File metadata and controls
23 lines (23 loc) · 845 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// @ts-check
/** @type {import('@stryker-mutator/api/core').PartialStrykerOptions} */
const config = {
_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", "dashboard"],
commandRunner: { command: "npm test" },
testRunner: "jest",
jest: {
config: {
testEnvironment: "node",
},
enableFindRelatedTests: true,
},
testRunnerNodeArgs: ["--experimental-vm-modules"],
testRunner_comment:
"Take a look at https://stryker-mutator.io/docs/stryker-js/jest-runner for information about the jest plugin.",
coverageAnalysis: "perTest",
mutate: ["src/**/*.ts", "!tests/**/*.test.ts"],
ignoreStatic: true,
};
export default config;