stryker-api
Advanced tools
Comparing version 0.4.1 to 0.4.2-rc0
"use strict"; | ||
var Config_1 = require('./src/config/Config'); | ||
var Config_1 = require("./src/config/Config"); | ||
exports.Config = Config_1.default; | ||
var ConfigWriterFactory_1 = require('./src/config/ConfigWriterFactory'); | ||
var ConfigWriterFactory_1 = require("./src/config/ConfigWriterFactory"); | ||
exports.ConfigWriterFactory = ConfigWriterFactory_1.default; | ||
//# sourceMappingURL=config.js.map |
"use strict"; | ||
var Factory_1 = require('./src/core/Factory'); | ||
var Factory_1 = require("./src/core/Factory"); | ||
exports.Factory = Factory_1.default; | ||
//# sourceMappingURL=core.js.map |
"use strict"; | ||
var MutatorFactory_1 = require('./src/mutant/MutatorFactory'); | ||
var MutatorFactory_1 = require("./src/mutant/MutatorFactory"); | ||
exports.MutatorFactory = MutatorFactory_1.default; | ||
//# sourceMappingURL=mutant.js.map |
{ | ||
"name": "stryker-api", | ||
"version": "0.4.1", | ||
"version": "0.4.2-rc0", | ||
"description": "The api for the extendable JavaScript mutation testing framework Stryker", | ||
@@ -56,4 +56,4 @@ "scripts": { | ||
"tslint": "^3.15.1", | ||
"typescript": "^2.0.10" | ||
"typescript": "^2.1.4" | ||
} | ||
} |
@@ -6,1 +6,2 @@ export { default as Reporter } from './src/report/Reporter'; | ||
export { default as SourceFile } from './src/report/SourceFile'; | ||
export { default as MatchedMutant } from './src/report/MatchedMutant'; |
"use strict"; | ||
var MutantStatus_1 = require('./src/report/MutantStatus'); | ||
var MutantStatus_1 = require("./src/report/MutantStatus"); | ||
exports.MutantStatus = MutantStatus_1.default; | ||
var ReporterFactory_1 = require('./src/report/ReporterFactory'); | ||
var ReporterFactory_1 = require("./src/report/ReporterFactory"); | ||
exports.ReporterFactory = ReporterFactory_1.default; | ||
//# sourceMappingURL=report.js.map |
@@ -1,5 +0,5 @@ | ||
import { StrykerOptions } from '../../core'; | ||
import { StrykerOptions, InputFileDescriptor } from '../../core'; | ||
export default class Config implements StrykerOptions { | ||
[customConfig: string]: any; | ||
files: string[]; | ||
files: Array<string | InputFileDescriptor>; | ||
mutate: string[]; | ||
@@ -6,0 +6,0 @@ logLevel: string; |
@@ -7,3 +7,3 @@ "use strict"; | ||
}; | ||
var core_1 = require('../../core'); | ||
var core_1 = require("../../core"); | ||
var ConfigWriterFactory; | ||
@@ -17,3 +17,3 @@ (function (ConfigWriterFactory_1) { | ||
function ConfigWriterFactory() { | ||
_super.call(this, 'config-reader'); | ||
return _super.call(this, 'config-reader') || this; | ||
} | ||
@@ -20,0 +20,0 @@ return ConfigWriterFactory; |
"use strict"; | ||
require('estree'); | ||
require("estree"); | ||
//# sourceMappingURL=estree.js.map |
@@ -7,3 +7,3 @@ "use strict"; | ||
}; | ||
var core_1 = require('../../core'); | ||
var core_1 = require("../../core"); | ||
var MutatorFactory; | ||
@@ -17,3 +17,3 @@ (function (MutatorFactory_1) { | ||
function MutatorFactory() { | ||
_super.call(this, 'mutator'); | ||
return _super.call(this, 'mutator') || this; | ||
} | ||
@@ -20,0 +20,0 @@ return MutatorFactory; |
import SourceFile from './SourceFile'; | ||
import MutantResult from './MutantResult'; | ||
import MatchedMutant from './MatchedMutant'; | ||
/** | ||
@@ -18,2 +19,7 @@ * Represents a reporter which can report during or after a Stryker run | ||
/** | ||
* Called when mutants are matched with tests | ||
* @param results The immutable array of mutants | ||
*/ | ||
onAllMutantsMatchedWithTests?(results: ReadonlyArray<MatchedMutant>): void; | ||
/** | ||
* Called when a mutant was tested | ||
@@ -20,0 +26,0 @@ * @param result The immutable result |
@@ -7,3 +7,3 @@ "use strict"; | ||
}; | ||
var core_1 = require('../../core'); | ||
var core_1 = require("../../core"); | ||
var ReporterFactory; | ||
@@ -17,3 +17,3 @@ (function (ReporterFactory_1) { | ||
function ReporterFactory() { | ||
_super.call(this, 'reporter'); | ||
return _super.call(this, 'reporter') || this; | ||
} | ||
@@ -20,0 +20,0 @@ /** |
@@ -7,3 +7,3 @@ "use strict"; | ||
}; | ||
var core_1 = require('../../core'); | ||
var core_1 = require("../../core"); | ||
var TestFrameworkFactory; | ||
@@ -17,3 +17,3 @@ (function (TestFrameworkFactory_1) { | ||
function TestFrameworkFactory() { | ||
_super.call(this, 'test framework'); | ||
return _super.call(this, 'test framework') || this; | ||
} | ||
@@ -20,0 +20,0 @@ return TestFrameworkFactory; |
@@ -7,3 +7,3 @@ "use strict"; | ||
}; | ||
var core_1 = require('../../core'); | ||
var core_1 = require("../../core"); | ||
var TestRunnerFactory; | ||
@@ -17,3 +17,3 @@ (function (TestRunnerFactory_1) { | ||
function TestRunnerFactory() { | ||
_super.call(this, 'testrunner'); | ||
return _super.call(this, 'testrunner') || this; | ||
} | ||
@@ -20,0 +20,0 @@ /** |
"use strict"; | ||
var TestFrameworkFactory_1 = require('./src/test_framework/TestFrameworkFactory'); | ||
var TestFrameworkFactory_1 = require("./src/test_framework/TestFrameworkFactory"); | ||
exports.TestFrameworkFactory = TestFrameworkFactory_1.default; | ||
//# sourceMappingURL=test_framework.js.map |
"use strict"; | ||
var TestStatus_1 = require('./src/test_runner/TestStatus'); | ||
var TestStatus_1 = require("./src/test_runner/TestStatus"); | ||
exports.TestStatus = TestStatus_1.default; | ||
var RunStatus_1 = require('./src/test_runner/RunStatus'); | ||
var RunStatus_1 = require("./src/test_runner/RunStatus"); | ||
exports.RunStatus = RunStatus_1.default; | ||
var TestRunnerFactory_1 = require('./src/test_runner/TestRunnerFactory'); | ||
var TestRunnerFactory_1 = require("./src/test_runner/TestRunnerFactory"); | ||
exports.TestRunnerFactory = TestRunnerFactory_1.default; | ||
//# sourceMappingURL=test_runner.js.map |
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
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
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
Deprecated
MaintenanceThe maintainer of the package marked it as deprecated. This could indicate that a single version should not be used, or that the package is no longer maintained and any new vulnerabilities will not be fixed.
Found 1 instance in 1 package
124133
138
1700
0