Skip to content

Commit

Permalink
✅ Add missing parameters in QualifiedParameters tests (#637)
Browse files Browse the repository at this point in the history
  • Loading branch information
dubzzz authored Jun 17, 2020
1 parent 63707e1 commit e9c6c2f
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions test/unit/check/runner/configuration/QualifiedParameters.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,19 @@ const parametersArbitrary = fc.record(
prand.xoroshiro128plus
),
numRuns: fc.nat(),
maxSkipsPerRun: fc.nat(),
timeout: fc.nat(),
skipAllAfterTimeLimit: fc.nat(),
interruptAfterTimeLimit: fc.nat(),
markInterruptAsFailure: fc.boolean(),
path: fc.array(fc.nat()).map((arr) => arr.join(':')),
logger: fc.func(fc.constant(undefined)),
unbiased: fc.boolean(),
verbose: fc.constantFrom(VerbosityLevel.None, VerbosityLevel.Verbose, VerbosityLevel.VeryVerbose),
examples: fc.array(fc.nat()),
endOnFailure: fc.boolean(),
skipAllAfterTimeLimit: fc.nat(),
interruptAfterTimeLimit: fc.nat(),
markInterruptAsFailure: fc.boolean(),
reporter: fc.func(fc.constant(undefined)),
asyncReporter: fc.func(fc.constant(Promise.resolve(undefined))),
},
{ withDeletedKeys: true }
);
Expand Down

0 comments on commit e9c6c2f

Please sign in to comment.