2025-12-20 10:05:21 +01:00
|
|
|
use cucumber::World;
|
2026-01-09 15:30:59 +02:00
|
|
|
use cucumber_ext::{DeployerKind, TestingFrameworkWorld};
|
|
|
|
|
use runner_examples::defaults::{init_logging_defaults, init_node_log_dir_defaults, init_tracing};
|
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();
|
2026-01-09 15:30:59 +02:00
|
|
|
init_node_log_dir_defaults(DeployerKind::Local);
|
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
|
|
|
}
|