Skip to content

Commit fc51959

Browse files
committed
config: Add with_bridge_backend option to TestCaseConfig.
1 parent e4c488a commit fc51959

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/config/test_case.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ impl TestCaseEnv {
4141
#[derive(Clone)]
4242
pub struct TestCaseConfig {
4343
pub n_nodes: usize,
44+
pub with_bridge_backend: bool,
4445
pub with_sequencer: bool,
4546
pub with_full_node: bool,
4647
pub with_prover: bool,
@@ -58,6 +59,7 @@ impl Default for TestCaseConfig {
5859
fn default() -> Self {
5960
TestCaseConfig {
6061
n_nodes: 1,
62+
with_bridge_backend: false,
6163
with_sequencer: true,
6264
with_prover: false,
6365
with_full_node: false,

0 commit comments

Comments
 (0)