Skip to content

Commit

Permalink
Merge pull request #173 from Lightning-Flow-Scanner/quality-hardening…
Browse files Browse the repository at this point in the history
…-mutation-tests

test: use stryker for mutation testing quality hardening
  • Loading branch information
junners authored Feb 6, 2025
2 parents 3660fad + f81b0db commit e35b41b
Show file tree
Hide file tree
Showing 5 changed files with 2,049 additions and 886 deletions.
27 changes: 16 additions & 11 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,17 +1,22 @@
node_modules/
/out/
node_modules

# Mac files
**/.DS_Store
.DS_Store

.yarn/**
**.gz
*.log

dist/
out/

.nyc_output/

.DS_Store
# generated directories
types
dist
out

*.log
# stryker temp files
.stryker-tmp

coverage/
types/
# generated reports
reports
coverage
.nyc_output
6 changes: 2 additions & 4 deletions jest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -156,9 +156,7 @@ const config: Config = {
// ],

// An array of regexp pattern strings that are matched against all test paths, matched tests are skipped
// testPathIgnorePatterns: [
// "/node_modules/"
// ],
testPathIgnorePatterns: ["/node_modules/"],

// The regexp pattern or array of patterns that Jest uses to detect test files
// testRegex: [],
Expand All @@ -177,7 +175,7 @@ const config: Config = {
$schema: "https://swc.rs/schema.json",
sourceMaps: "inline",
module: {
type: "commonjs",
type: "es6",
strictMode: true,
noInterop: false,
resolveFully: false,
Expand Down
Loading

0 comments on commit e35b41b

Please sign in to comment.