UNPKG

874 BJavaScriptView Raw
1export const JEST_OVERRIDE_OPTIONS = Object.freeze({
2 // Prevent the user from using his or her own testResultProcessor because this might
3 // Mess with the way Stryker gets the results
4 testResultsProcessor: undefined,
5 // Disable code coverage, it is not used in Stryker and will only slow down the test runs
6 collectCoverage: false,
7 // Disable verbose logging, this will only slow down Stryker test runs
8 verbose: false,
9 // Disable notifications for test results, this will otherwise show a notification about
10 // the results each time Stryker runs the tests
11 notify: false,
12 // Bail isn't supported programmatically in jest
13 // see https://github.com/facebook/jest/issues/11766
14 bail: false,
15 /**
16 * Disable reporters, they only way us down.
17 */
18 reporters: [],
19});
20//# sourceMappingURL=jest-override-options.js.map
\No newline at end of file