Comparing version 0.19.3 to 0.19.4
@@ -6,2 +6,10 @@ # Change Log | ||
<a name="0.19.4"></a> | ||
## [0.19.4](https://github.com/stryker-mutator/stryker/compare/stryker@0.19.3...stryker@0.19.4) (2018-03-21) | ||
**Note:** Version bump only for package stryker | ||
<a name="0.19.3"></a> | ||
@@ -8,0 +16,0 @@ ## [0.19.3](https://github.com/stryker-mutator/stryker/compare/stryker@0.19.2...stryker@0.19.3) (2018-02-14) |
{ | ||
"name": "stryker", | ||
"version": "0.19.3", | ||
"version": "0.19.4", | ||
"description": "The extendable JavaScript mutation testing framework", | ||
@@ -82,3 +82,3 @@ "main": "src/Stryker.js", | ||
"@types/progress": "^2.0.1", | ||
"stryker-api": "^0.13.0" | ||
"stryker-api": "^0.13.1" | ||
}, | ||
@@ -85,0 +85,0 @@ "peerDependencies": { |
@@ -14,3 +14,3 @@ [![Build Status](https://travis-ci.org/stryker-mutator/stryker.svg?branch=master)](https://travis-ci.org/stryker-mutator/stryker) | ||
## Introduction | ||
For an introduction to mutation testing and Stryker's features, see [stryker-mutator.github.io](http://stryker-mutator.github.io/). | ||
For an introduction to mutation testing and Stryker's features, see [stryker-mutator.io](https://stryker-mutator.io/). | ||
@@ -81,3 +81,3 @@ ## Getting started | ||
## Supported mutators | ||
See our website for the [list of currently supported mutators](http://stryker-mutator.github.io/mutators.html). | ||
See our website for the [list of currently supported mutators](https://stryker-mutator.io/mutators.html). | ||
@@ -130,3 +130,3 @@ ## Configuration | ||
Make sure the test runner plugin for Stryker is installed. E.g. we need the `stryker-karma-runner` to use `karma` as a test runner. | ||
See the [list of plugins](http://stryker-mutator.github.io/plugins.html) for an up-to-date list of supported test runners and plugins. | ||
See the [list of plugins](https://stryker-mutator.io/plugins.html) for an up-to-date list of supported test runners and plugins. | ||
@@ -192,3 +192,3 @@ #### Test framework | ||
By default `clear-text` and `progress` are active if no reporter is configured. | ||
You can load additional plugins to get more reporters. See [stryker-mutator.github.io](http://stryker-mutator.github.io) | ||
You can load additional plugins to get more reporters. See [stryker-mutator.io](https://stryker-mutator.io) | ||
for an up-to-date list of supported reporter plugins and a description on each reporter. | ||
@@ -219,3 +219,3 @@ | ||
you can consult [npm](https://www.npmjs.com/search?q=%40stryker-plugin) or | ||
[stryker-mutator.github.io](http://stryker-mutator.github.io). | ||
[stryker-mutator.io](https://stryker-mutator.io). | ||
@@ -247,3 +247,3 @@ #### Start of port range for test runners | ||
With `timeoutFactor` you can configure the allowed deviation relative to the time of a normal test run. Tweak this if you notice that mutants are prone to creating slower code, but not infinite loops. | ||
`timeoutMs` let's you configure an absolute deviation. Use it, if you run Stryker on a busy machine and you need to wait longer to make sure that the code indeed entered an infinite loop. | ||
`timeoutMs` lets you configure an absolute deviation. Use it, if you run Stryker on a busy machine and you need to wait longer to make sure that the code indeed entered an infinite loop. | ||
@@ -250,0 +250,0 @@ #### Timeout factor |
@@ -15,3 +15,3 @@ import TestableMutant from './TestableMutant'; | ||
constructor(mutant: TestableMutant, transpileResult: TranspileResult, changedAnyTranspiledFiles: boolean); | ||
static create(mutant: TestableMutant, transpileResult: TranspileResult, unMutatedFiles: File[]): default; | ||
static create(mutant: TestableMutant, transpileResult: TranspileResult, unMutatedFiles: File[]): TranspiledMutant; | ||
} |
import { Location } from 'stryker-api/core'; | ||
export default class LocationHelper { | ||
private loc; | ||
static MAX_VALUE: default; | ||
static MAX_VALUE: LocationHelper; | ||
constructor(loc: Location); | ||
@@ -6,0 +6,0 @@ /** |
340188