@stryker-mutator/api
Advanced tools
Comparing version 1.1.1 to 1.2.0
@@ -6,2 +6,18 @@ # Change Log | ||
# [1.2.0](https://github.com/stryker-mutator/stryker/compare/v1.1.1...v1.2.0) (2019-04-02) | ||
### Bug Fixes | ||
* **deps:** add mutation-testing-report-schema ([3d40d91](https://github.com/stryker-mutator/stryker/commit/3d40d91)) | ||
### Features | ||
* **reporter:** add `mutationReportReady` event ([044158d](https://github.com/stryker-mutator/stryker/commit/044158d)) | ||
## [1.1.1](https://github.com/stryker-mutator/stryker/compare/v1.1.0...v1.1.1) (2019-03-21) | ||
@@ -8,0 +24,0 @@ |
{ | ||
"name": "@stryker-mutator/api", | ||
"version": "1.1.1", | ||
"description": "The api for the extendable JavaScript mutation testing framework Stryker", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/stryker-mutator/stryker" | ||
}, | ||
"keywords": [ | ||
"mutation testing", | ||
"mutation", | ||
"testing", | ||
"test", | ||
"js", | ||
"stryker" | ||
], | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"contributors": [ | ||
"nicojs <jansennico@gmail.com>", | ||
"Alex van Assem <avassem@gmail.com>", | ||
"Jeremy Nagel <jeremy.nagel@learnosity.com>", | ||
"Philipp Weissenbacher <philipp.weissenbacher@gmail.com>", | ||
"Simon de Lang <simondelang@gmail.com>" | ||
], | ||
"license": "Apache-2.0", | ||
"bugs": { | ||
"url": "https://github.com/stryker-mutator/stryker/issues" | ||
}, | ||
"homepage": "https://github.com/stryker-mutator/stryker/tree/master/packages/api#readme", | ||
"engines": { | ||
"node": ">=6" | ||
}, | ||
"dependencies": { | ||
"tslib": "~1.9.3" | ||
}, | ||
"devDependencies": { | ||
"surrial": "~1.0.0", | ||
"typed-inject": "~1.0.0" | ||
}, | ||
"gitHead": "a4a063921e3ebc0fe8d7e7e6cd46ad0da3952d53" | ||
"name": "@stryker-mutator/api", | ||
"version": "1.2.0", | ||
"description": "The api for the extendable JavaScript mutation testing framework Stryker", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/stryker-mutator/stryker" | ||
}, | ||
"keywords": [ | ||
"mutation testing", | ||
"mutation", | ||
"testing", | ||
"test", | ||
"js", | ||
"stryker" | ||
], | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"contributors": [ | ||
"nicojs <jansennico@gmail.com>", | ||
"Alex van Assem <avassem@gmail.com>", | ||
"Jeremy Nagel <jeremy.nagel@learnosity.com>", | ||
"Philipp Weissenbacher <philipp.weissenbacher@gmail.com>", | ||
"Simon de Lang <simondelang@gmail.com>" | ||
], | ||
"license": "Apache-2.0", | ||
"bugs": { | ||
"url": "https://github.com/stryker-mutator/stryker/issues" | ||
}, | ||
"homepage": "https://github.com/stryker-mutator/stryker/tree/master/packages/api#readme", | ||
"engines": { | ||
"node": ">=6" | ||
}, | ||
"dependencies": { | ||
"mutation-testing-report-schema": "^1.0.0", | ||
"tslib": "~1.9.3" | ||
}, | ||
"devDependencies": { | ||
"surrial": "~1.0.0", | ||
"typed-inject": "~1.0.0" | ||
}, | ||
"gitHead": "50d30257ed3b1b9c0077aa8861ef5135434d8bed" | ||
} |
@@ -0,1 +1,2 @@ | ||
import * as mutationTestReportSchema from 'mutation-testing-report-schema/dist/src/api'; | ||
export { default as Reporter } from './src/report/Reporter'; | ||
@@ -7,2 +8,8 @@ export { default as MutantResult } from './src/report/MutantResult'; | ||
export { default as ScoreResult } from './src/report/ScoreResult'; | ||
export { | ||
/** | ||
* Types exported directly from mutation-testing-schema | ||
* @see https://github.com/stryker-mutator/mutation-testing-elements/tree/master/packages/mutation-testing-report-schema | ||
*/ | ||
mutationTestReportSchema }; | ||
//# sourceMappingURL=report.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var mutationTestReportSchema = require("mutation-testing-report-schema/dist/src/api"); | ||
exports.mutationTestReportSchema = mutationTestReportSchema; | ||
var MutantStatus_1 = require("./src/report/MutantStatus"); | ||
exports.MutantStatus = MutantStatus_1.default; | ||
//# sourceMappingURL=report.js.map |
@@ -5,2 +5,3 @@ import ScoreResult from './ScoreResult'; | ||
import MatchedMutant from './MatchedMutant'; | ||
import { MutationTestResult } from 'mutation-testing-report-schema'; | ||
/** | ||
@@ -41,2 +42,8 @@ * Represents a reporter which can report during or after a Stryker run | ||
/** | ||
* Called when mutation testing is done | ||
* @param report the mutation test result that is valid according to the mutation-testing-report-schema (json schema) | ||
* @see https://github.com/stryker-mutator/mutation-testing-elements/tree/master/packages/mutation-testing-report-schema#mutation-testing-elements-schema | ||
*/ | ||
onMutationTestReportReady?(report: MutationTestResult): void; | ||
/** | ||
* Called when stryker wants to quit | ||
@@ -43,0 +50,0 @@ * Gives a reporter the ability to finish up any async tasks |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
87792
1335
2
+ Addedmutation-testing-report-schema@1.7.14(transitive)