-
Notifications
You must be signed in to change notification settings - Fork 251
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(reporter): add
mutationReportReady
event
Add the `onMutationTestReportReady` reporter interface method. The argument is the report that is compliant to the [mutation-testing-report-schema](https://github.com/stryker-mutator/mutation-testing-elements/tree/master/packages/mutation-testing-report-schema)
- Loading branch information
Showing
3 changed files
with
17 additions
and
0 deletions.
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
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 |
---|---|---|
@@ -1,6 +1,14 @@ | ||
import * as mutationTestReportSchema from 'mutation-testing-report-schema/dist/src/api'; | ||
export { default as Reporter } from './src/report/Reporter'; | ||
export { default as MutantResult } from './src/report/MutantResult'; | ||
export { default as MutantStatus } from './src/report/MutantStatus'; | ||
export { default as SourceFile } from './src/report/SourceFile'; | ||
export { default as MatchedMutant } from './src/report/MatchedMutant'; | ||
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 | ||
}; |
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