Skip to content

Commit

Permalink
🔥 Remove localnet subcommand
Browse files Browse the repository at this point in the history
  • Loading branch information
lukacan committed Jul 6, 2024
1 parent 3899077 commit 48e7da6
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 21 deletions.
3 changes: 0 additions & 3 deletions crates/cli/src/command.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@ pub use fuzz::{fuzz, FuzzCommand};
mod test;
pub use test::test;

mod localnet;
pub use localnet::localnet;

mod init;
pub use init::{init, TestsType};

Expand Down
15 changes: 0 additions & 15 deletions crates/cli/src/command/localnet.rs

This file was deleted.

3 changes: 0 additions & 3 deletions crates/cli/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,6 @@ enum Command {
#[clap(subcommand)]
subcmd: FuzzCommand,
},
/// Run local test validator
Localnet,
/// Initialize test environment
Init {
/// Specifies the types of tests for which the frameworks should be initialized.
Expand All @@ -66,7 +64,6 @@ pub async fn start() {
Command::KeyPair { subcmd } => command::keypair(subcmd)?,
Command::Test { root } => command::test(root).await?,
Command::Fuzz { root, subcmd } => command::fuzz(root, subcmd).await?,
Command::Localnet => command::localnet().await?,
Command::Init { tests_type } => command::init(tests_type).await?,
Command::Clean => command::clean().await?,
}
Expand Down

0 comments on commit 48e7da6

Please sign in to comment.