stryker-api
Advanced tools
Comparing version 0.15.0 to 0.16.0
@@ -6,2 +6,13 @@ # Change Log | ||
<a name="0.16.0"></a> | ||
# [0.16.0](https://github.com/stryker-mutator/stryker/compare/stryker-api@0.15.0...stryker-api@0.16.0) (2018-04-11) | ||
### Features | ||
* **Sandbox isolation:** symbolic link node_modules in sandboxes ([#689](https://github.com/stryker-mutator/stryker/issues/689)) ([487ab7c](https://github.com/stryker-mutator/stryker/commit/487ab7c)) | ||
<a name="0.15.0"></a> | ||
@@ -8,0 +19,0 @@ # [0.15.0](https://github.com/stryker-mutator/stryker/compare/stryker-api@0.14.0...stryker-api@0.15.0) (2018-04-04) |
export { default as Config } from './src/config/Config'; | ||
export { default as ConfigEditor } from './src/config/ConfigEditor'; | ||
export { default as ConfigEditorFactory } from './src/config/ConfigEditorFactory'; |
@@ -0,0 +0,0 @@ "use strict"; |
@@ -0,0 +0,0 @@ export { default as StrykerOptions } from './src/core/StrykerOptions'; |
@@ -0,0 +0,0 @@ "use strict"; |
export { default as Mutant } from './src/mutant/Mutant'; | ||
export { default as Mutator } from './src/mutant/Mutator'; | ||
export { default as MutatorFactory } from './src/mutant/MutatorFactory'; |
@@ -0,0 +0,0 @@ "use strict"; |
{ | ||
"name": "stryker-api", | ||
"version": "0.15.0", | ||
"version": "0.16.0", | ||
"description": "The api for the extendable JavaScript mutation testing framework Stryker", | ||
@@ -5,0 +5,0 @@ "scripts": { |
@@ -0,0 +0,0 @@ [![Build Status](https://travis-ci.org/stryker-mutator/stryker.svg?branch=master)](https://travis-ci.org/stryker-mutator/stryker) |
@@ -0,0 +0,0 @@ export { default as Reporter } from './src/report/Reporter'; |
@@ -0,0 +0,0 @@ "use strict"; |
@@ -18,4 +18,5 @@ import { StrykerOptions, MutatorDescriptor, MutationScoreThresholds } from '../../core'; | ||
maxConcurrentTestRunners: number; | ||
symlinkNodeModules: boolean; | ||
thresholds: MutationScoreThresholds; | ||
set(newConfig: StrykerOptions): void; | ||
} |
@@ -15,2 +15,3 @@ "use strict"; | ||
this.maxConcurrentTestRunners = Infinity; | ||
this.symlinkNodeModules = true; | ||
this.thresholds = { | ||
@@ -17,0 +18,0 @@ high: 80, |
@@ -0,0 +0,0 @@ import Config from './Config'; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
//# sourceMappingURL=ConfigEditor.js.map |
@@ -0,0 +0,0 @@ import { Factory } from '../../core'; |
@@ -0,0 +0,0 @@ "use strict"; |
@@ -0,0 +0,0 @@ /** |
@@ -0,0 +0,0 @@ "use strict"; |
@@ -0,0 +0,0 @@ /// <reference types="node" /> |
@@ -0,0 +0,0 @@ "use strict"; |
@@ -0,0 +0,0 @@ import Position from './Position'; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
//# sourceMappingURL=Location.js.map |
@@ -0,0 +0,0 @@ /** |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
//# sourceMappingURL=MutationScoreThresholds.js.map |
@@ -0,0 +0,0 @@ interface MutatorDescriptor { |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
//# sourceMappingURL=MutatorDescriptor.js.map |
@@ -0,0 +0,0 @@ /** |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
//# sourceMappingURL=Position.js.map |
@@ -0,0 +0,0 @@ /** |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
//# sourceMappingURL=Range.js.map |
@@ -97,2 +97,7 @@ import MutationScoreThresholds from './MutationScoreThresholds'; | ||
/** | ||
* Indicates whether or not to symlink the node_modules folder inside the sandbox folder(s). | ||
* Default: true | ||
*/ | ||
symlinkNodeModules?: boolean; | ||
/** | ||
* Amount of additional time, in milliseconds, the mutation test is allowed to run | ||
@@ -99,0 +104,0 @@ */ |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
//# sourceMappingURL=StrykerOptions.js.map |
@@ -0,0 +0,0 @@ import { Range } from '../../core'; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
//# sourceMappingURL=Mutant.js.map |
@@ -0,0 +0,0 @@ import { File } from '../../core'; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
//# sourceMappingURL=Mutator.js.map |
@@ -0,0 +0,0 @@ import Mutator from './Mutator'; |
@@ -0,0 +0,0 @@ "use strict"; |
@@ -0,0 +0,0 @@ interface MatchedMutant { |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
//# sourceMappingURL=MatchedMutant.js.map |
@@ -0,0 +0,0 @@ import MutantStatus from './MutantStatus'; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
//# sourceMappingURL=MutantResult.js.map |
@@ -0,0 +0,0 @@ declare enum MutantStatus { |
@@ -0,0 +0,0 @@ "use strict"; |
@@ -0,0 +0,0 @@ import ScoreResult from './ScoreResult'; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
//# sourceMappingURL=Reporter.js.map |
@@ -0,0 +0,0 @@ import { Factory, StrykerOptions } from '../../core'; |
@@ -0,0 +0,0 @@ "use strict"; |
@@ -0,0 +0,0 @@ /** |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
//# sourceMappingURL=ScoreResult.js.map |
@@ -0,0 +0,0 @@ interface SourceFile { |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
//# sourceMappingURL=SourceFile.js.map |
@@ -0,0 +0,0 @@ import TestSelection from './TestSelection'; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
//# sourceMappingURL=TestFramework.js.map |
@@ -0,0 +0,0 @@ import { Factory } from '../../core'; |
@@ -0,0 +0,0 @@ "use strict"; |
@@ -0,0 +0,0 @@ import { StrykerOptions } from '../../core'; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
//# sourceMappingURL=TestFrameworkSettings.js.map |
@@ -0,0 +0,0 @@ export default interface TestSelection { |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
//# sourceMappingURL=TestSelection.js.map |
@@ -0,0 +0,0 @@ import { Location } from '../../core'; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
//# sourceMappingURL=Coverage.js.map |
@@ -0,0 +0,0 @@ import { StrykerOptions } from '../../core'; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
//# sourceMappingURL=RunnerOptions.js.map |
@@ -0,0 +0,0 @@ /** |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
//# sourceMappingURL=RunOptions.js.map |
@@ -0,0 +0,0 @@ import TestResult from './TestResult'; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
//# sourceMappingURL=RunResult.js.map |
@@ -0,0 +0,0 @@ declare enum RunStatus { |
@@ -0,0 +0,0 @@ "use strict"; |
@@ -0,0 +0,0 @@ import TestStatus from './TestStatus'; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
//# sourceMappingURL=TestResult.js.map |
@@ -0,0 +0,0 @@ import RunResult from './RunResult'; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
//# sourceMappingURL=TestRunner.js.map |
@@ -0,0 +0,0 @@ import { Factory } from '../../core'; |
@@ -0,0 +0,0 @@ "use strict"; |
@@ -0,0 +0,0 @@ /** |
@@ -0,0 +0,0 @@ "use strict"; |
@@ -0,0 +0,0 @@ import { File } from '../../core'; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
//# sourceMappingURL=Transpiler.js.map |
@@ -0,0 +0,0 @@ import { Factory } from '../../core'; |
@@ -0,0 +0,0 @@ "use strict"; |
@@ -0,0 +0,0 @@ import { Config } from '../../config'; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
//# sourceMappingURL=TranspilerOptions.js.map |
@@ -0,0 +0,0 @@ export { default as TestFramework } from './src/test_framework/TestFramework'; |
@@ -0,0 +0,0 @@ "use strict"; |
@@ -0,0 +0,0 @@ export * from './src/test_runner/Coverage'; |
@@ -0,0 +0,0 @@ "use strict"; |
export { default as Transpiler } from './src/transpile/Transpiler'; | ||
export { default as TranspilerFactory } from './src/transpile/TranspilerFactory'; | ||
export { default as TranspilerOptions } from './src/transpile/TranspilerOptions'; |
@@ -0,0 +0,0 @@ "use strict"; |
Sorry, the diff of this file is not supported yet
1343
75957