Skip to content

Commit

Permalink
fix(test): set fuzz runs (gakonst#595)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattsse committed Jan 27, 2022
1 parent 8a61027 commit c5e7af4
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion cli/src/cmd/test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,11 @@ impl Cmd for TestArgs {

// Setup the fuzzer
// TODO: Add CLI Options to modify the persistence
let cfg = proptest::test_runner::Config { failure_persistence: None, ..Default::default() };
let cfg = proptest::test_runner::Config {
failure_persistence: None,
cases: config.fuzz_runs,
..Default::default()
};
let fuzzer = proptest::test_runner::TestRunner::new(cfg);

// Set up the project
Expand Down

0 comments on commit c5e7af4

Please sign in to comment.