From 70d40f44a39eeaaadf6e92dac6c58a91b58d38f3 Mon Sep 17 00:00:00 2001 From: Pierre Cavin Date: Mon, 23 Oct 2023 19:23:25 +0200 Subject: [PATCH] test: reduce number of fuzzing runs --- tests/cron.fuzz.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/cron.fuzz.ts b/tests/cron.fuzz.ts index c238371a..ce630fd0 100644 --- a/tests/cron.fuzz.ts +++ b/tests/cron.fuzz.ts @@ -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) @@ -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) @@ -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 =>