mirror of
https://github.com/logos-blockchain/logos-blockchain-testing.git
synced 2026-01-10 17:23:07 +00:00
9 lines
371 B
Rust
9 lines
371 B
Rust
use testing_framework_core::scenario::ScenarioBuilder;
|
|
use testing_framework_workflows::ScenarioBuilderExt;
|
|
|
|
pub fn expectations_plan() -> testing_framework_core::scenario::Scenario<()> {
|
|
ScenarioBuilder::topology_with(|t| t.network_star().validators(1).executors(0))
|
|
.expect_consensus_liveness() // Assert blocks are produced continuously
|
|
.build()
|
|
}
|