Skip to content

Commit

Permalink
test: reduce number of fuzzing runs
Browse files Browse the repository at this point in the history
  • Loading branch information
sheerlox committed Oct 23, 2023
1 parent 0de4986 commit 70d40f4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/cron.fuzz.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ test.prop(
unrefTimeout: fc.boolean(),
tzOrOffset: fc.boolean()
},
{ numRuns: 250_000 }
{ numRuns: 100_000 }
)(
'CronJob should behave as expected and not error unexpectedly (with matching inputs)',
params => testCronJob(params, isCronError)
Expand All @@ -88,7 +88,7 @@ test.prop(
unrefTimeout: fc.boolean(),
tzOrOffset: fc.boolean()
},
{ numRuns: 250_000 }
{ numRuns: 100_000 }
)(
'CronJob should behave as expected and not error unexpectedly (with random inputs)',
params => testCronJob(params, isCronError)
Expand All @@ -104,7 +104,7 @@ test.prop(
unrefTimeout: fc.anything(),
tzOrOffset: fc.boolean()
},
{ numRuns: 250_000 }
{ numRuns: 100_000 }
)(
'CronJob should behave as expected and not error unexpectedly (with anything inputs)',
params =>
Expand Down

0 comments on commit 70d40f4

Please sign in to comment.