fast-check
Advanced tools
Comparing version 1.5.0 to 1.5.1
@@ -236,3 +236,3 @@ "use strict"; | ||
var generator = Tosser_1.toss(property, qParams.seed, qParams.examples); | ||
var maxInitialIterations = qParams.path.length === 0 ? qParams.numRuns : -1; | ||
var maxInitialIterations = qParams.path.indexOf(':') === -1 ? qParams.numRuns : -1; | ||
var maxSkips = qParams.numRuns * qParams.maxSkipsPerRun; | ||
@@ -239,0 +239,0 @@ var initialValues = qParams.path.length === 0 ? generator : runnerPathWalker(generator, qParams.path); |
{ | ||
"name": "fast-check", | ||
"version": "1.5.0", | ||
"version": "1.5.1", | ||
"description": "Property based testing framework for JavaScript (like QuickCheck)", | ||
@@ -5,0 +5,0 @@ "main": "lib/fast-check.js", |
@@ -17,3 +17,7 @@ { | ||
], | ||
"outDir": "lib/" | ||
"outDir": "lib/", | ||
"types": [ | ||
"node", | ||
"mocha" | ||
] | ||
}, | ||
@@ -20,0 +24,0 @@ "include": [ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
519533
8387