2025-12-20 10:05:21 +01:00
|
|
|
use cucumber::World;
|
|
|
|
|
use cucumber_ext::TestingFrameworkWorld;
|
|
|
|
|
use runner_examples::defaults::{
|
|
|
|
|
Mode, init_logging_defaults, init_node_log_dir_defaults, init_tracing,
|
2025-12-18 13:05:40 +01:00
|
|
|
};
|
2025-12-17 17:28:29 +01:00
|
|
|
|
2025-12-20 10:05:21 +01:00
|
|
|
#[tokio::main]
|
2025-12-17 17:28:29 +01:00
|
|
|
async fn main() {
|
|
|
|
|
init_logging_defaults();
|
2025-12-18 13:05:40 +01:00
|
|
|
init_node_log_dir_defaults(Mode::Host);
|
2025-12-17 17:28:29 +01:00
|
|
|
init_tracing();
|
2025-12-18 09:23:39 +01:00
|
|
|
|
2025-12-20 10:05:21 +01:00
|
|
|
TestingFrameworkWorld::run("examples/cucumber/features/local_smoke.feature").await;
|
2025-12-17 17:28:29 +01:00
|
|
|
}
|