stryker-api
Advanced tools
Comparing version 0.3.0-rc3 to 0.3.0-rc4
{ | ||
"name": "stryker-api", | ||
"version": "0.3.0-rc3", | ||
"version": "0.3.0-rc4", | ||
"description": "The api for the extendable JavaScript mutation testing framework Stryker", | ||
@@ -5,0 +5,0 @@ "scripts": { |
@@ -12,4 +12,6 @@ import { StrykerOptions } from '../../core'; | ||
reporter: string[]; | ||
coverageAnalysis: 'perTest'; | ||
coverageAnalysis: 'perTest' | 'all' | 'off'; | ||
testRunner: string; | ||
testFramework: string; | ||
set(newConfig: StrykerOptions): void; | ||
} |
declare enum MutantStatus { | ||
/** | ||
* The status of an untested Mutant. | ||
* The status of a survived mutant, because it was not covered by any test. | ||
*/ | ||
UNTESTED = 0, | ||
NoCoverage = 0, | ||
/** | ||
* The status of a killed Mutant. | ||
* The status of a killed mutant. | ||
*/ | ||
KILLED = 1, | ||
Killed = 1, | ||
/** | ||
* The status of a survived Mutant. | ||
* The status of a survived mutant. | ||
*/ | ||
SURVIVED = 2, | ||
Survived = 2, | ||
/** | ||
* The status of a timed out Mutant. | ||
* The status of a timed out mutant. | ||
*/ | ||
TIMEDOUT = 3, | ||
TimedOut = 3, | ||
} | ||
export default MutantStatus; |
@@ -5,17 +5,17 @@ "use strict"; | ||
/** | ||
* The status of an untested Mutant. | ||
* The status of a survived mutant, because it was not covered by any test. | ||
*/ | ||
MutantStatus[MutantStatus["UNTESTED"] = 0] = "UNTESTED"; | ||
MutantStatus[MutantStatus["NoCoverage"] = 0] = "NoCoverage"; | ||
/** | ||
* The status of a killed Mutant. | ||
* The status of a killed mutant. | ||
*/ | ||
MutantStatus[MutantStatus["KILLED"] = 1] = "KILLED"; | ||
MutantStatus[MutantStatus["Killed"] = 1] = "Killed"; | ||
/** | ||
* The status of a survived Mutant. | ||
* The status of a survived mutant. | ||
*/ | ||
MutantStatus[MutantStatus["SURVIVED"] = 2] = "SURVIVED"; | ||
MutantStatus[MutantStatus["Survived"] = 2] = "Survived"; | ||
/** | ||
* The status of a timed out Mutant. | ||
* The status of a timed out mutant. | ||
*/ | ||
MutantStatus[MutantStatus["TIMEDOUT"] = 3] = "TIMEDOUT"; | ||
MutantStatus[MutantStatus["TimedOut"] = 3] = "TimedOut"; | ||
})(MutantStatus || (MutantStatus = {})); | ||
@@ -22,0 +22,0 @@ Object.defineProperty(exports, "__esModule", { value: true }); |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
108614
1670