Skip to content

Commit

Permalink
πŸ§‘β€πŸ’» add help comment for fuzz add command
Browse files Browse the repository at this point in the history
  • Loading branch information
lukacan committed Feb 15, 2024
1 parent 9776295 commit b837512
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions crates/cli/src/command/fuzz.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ pub enum FuzzCommand {
/// Path to the crash file
crash_file_path: String,
},
/// Add new fuzz test. Explicit fuzz test name is not supported. Implicit name is fuzz_ID, where ID is automatically derived.
Add,
}

Expand Down
4 changes: 2 additions & 2 deletions crates/cli/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@ enum Command {
#[clap(subcommand)]
subcmd: KeyPairCommand,
},
/// Run program tests
/// Run program PoC tests
Test {
/// Anchor project root
#[clap(short, long, default_value = "./")]
root: String,
},
/// Run and debug fuzz tests
/// Run and debug Fuzz tests
Fuzz {
/// Anchor project root
#[clap(short, long)]
Expand Down

0 comments on commit b837512

Please sign in to comment.