Skip to content

Commit

Permalink
config: Add with_bridge_backend option to TestCaseConfig.
Browse files Browse the repository at this point in the history
  • Loading branch information
ceyhunsen committed Oct 4, 2024
1 parent e4c488a commit fc51959
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/config/test_case.rs
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ impl TestCaseEnv {
#[derive(Clone)]
pub struct TestCaseConfig {
pub n_nodes: usize,
pub with_bridge_backend: bool,
pub with_sequencer: bool,
pub with_full_node: bool,
pub with_prover: bool,
Expand All @@ -58,6 +59,7 @@ impl Default for TestCaseConfig {
fn default() -> Self {
TestCaseConfig {
n_nodes: 1,
with_bridge_backend: false,
with_sequencer: true,
with_prover: false,
with_full_node: false,
Expand Down

0 comments on commit fc51959

Please sign in to comment.