mirror of
https://github.com/logos-blockchain/logos-blockchain-testing.git
synced 2026-01-04 06:13:09 +00:00
12 lines
342 B
Rust
12 lines
342 B
Rust
|
|
use testing_framework_core::scenario::Metrics;
|
||
|
|
pub use testing_framework_workflows::{
|
||
|
|
builder::{ChaosBuilderExt, ScenarioBuilderExt},
|
||
|
|
expectations, util, workloads,
|
||
|
|
};
|
||
|
|
|
||
|
|
/// Metrics are currently disabled in this branch; return a stub handle.
|
||
|
|
#[must_use]
|
||
|
|
pub const fn configure_prometheus_metrics() -> Metrics {
|
||
|
|
Metrics::empty()
|
||
|
|
}
|