Skip to content

Commit

Permalink
build(deps): upgrade mutation-testing-metrics (#2072)
Browse files Browse the repository at this point in the history
  • Loading branch information
simondel authored Mar 3, 2020
1 parent c2a544e commit 74ab647
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 18 deletions.
1 change: 1 addition & 0 deletions e2e/helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ export function produceMetrics(metrics: Partial<Metrics>): Metrics {
runtimeErrors: 0,
survived: 0,
timeout: 0,
ignored: 0,
totalCovered: 0,
totalDetected: 0,
totalInvalid: 0,
Expand Down
21 changes: 7 additions & 14 deletions e2e/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion e2e/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"link-parent-bin": "~1.0.0",
"load-grunt-tasks": "~5.1.0",
"mocha": "~6.2.2",
"mutation-testing-metrics": "~1.1.1",
"mutation-testing-metrics": "~1.3.0",
"rxjs": "~6.5.3",
"semver": "~6.3.0",
"ts-node": "~7.0.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"node": ">=8"
},
"dependencies": {
"mutation-testing-report-schema": "^1.1.0",
"mutation-testing-report-schema": "~1.3.0",
"surrial": "^2.0.1",
"tslib": "~1.10.0"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
"log4js": "6.1.2",
"mkdirp": "~1.0.3",
"mutation-testing-elements": "^1.0.2",
"mutation-testing-metrics": "^1.1.1",
"mutation-testing-metrics": "~1.3.0",
"progress": "~2.0.0",
"rimraf": "~3.0.0",
"rxjs": "~6.5.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/test-helpers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"homepage": "https://github.com/stryker-mutator/stryker/tree/master/packages/test-helpers#readme",
"license": "ISC",
"dependencies": {
"mutation-testing-metrics": "^1.1.1"
"mutation-testing-metrics": "~1.3.0"
},
"devDependencies": {
"@stryker-mutator/api": "^2.5.0",
Expand Down
1 change: 1 addition & 0 deletions packages/test-helpers/src/factory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ export const metrics = factoryMethod<Metrics>(() => ({
runtimeErrors: 0,
survived: 0,
timeout: 0,
ignored: 0,
totalCovered: 0,
totalDetected: 0,
totalInvalid: 0,
Expand Down

0 comments on commit 74ab647

Please sign in to comment.