We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4c488a commit fc51959Copy full SHA for fc51959
src/config/test_case.rs
@@ -41,6 +41,7 @@ impl TestCaseEnv {
41
#[derive(Clone)]
42
pub struct TestCaseConfig {
43
pub n_nodes: usize,
44
+ pub with_bridge_backend: bool,
45
pub with_sequencer: bool,
46
pub with_full_node: bool,
47
pub with_prover: bool,
@@ -58,6 +59,7 @@ impl Default for TestCaseConfig {
58
59
fn default() -> Self {
60
TestCaseConfig {
61
n_nodes: 1,
62
+ with_bridge_backend: false,
63
with_sequencer: true,
64
with_prover: false,
65
with_full_node: false,
0 commit comments