forked from CMU-17313Q/cmu-17313q-f24-nodebb-f24-NodeBB
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Latifa Al-Hitmi
committed
Oct 24, 2024
1 parent
47abd93
commit d3201d1
Showing
2 changed files
with
16 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -74,4 +74,6 @@ link-plugins.sh | |
test.sh | ||
|
||
.docker/** | ||
!**/.gitkeep | ||
!**/.gitkeep | ||
# stryker temp files | ||
.stryker-tmp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
// @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"], | ||
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", | ||
}; | ||
export default config; |