#![allow(missing_docs)]
#![allow(unsafe_code)]
#![allow(
clippy::needless_pass_by_value,
clippy::needless_pass_by_ref_mut,
clippy::trivially_copy_pass_by_ref,
clippy::items_after_statements,
clippy::too_many_lines,
clippy::option_if_let_else,
clippy::significant_drop_tightening,
clippy::trivial_regex,
clippy::match_same_arms,
clippy::used_underscore_binding
)]
mod steps;
use cucumber::World;
use steps::ConfigWorld;
#[tokio::test(flavor = "multi_thread")]
async fn bdd() {
let runner = ConfigWorld::cucumber().with_default_cli();
#[cfg(feature = "hot-reload")]
runner.fail_on_skipped().run_and_exit("tests/features").await;
#[cfg(not(feature = "hot-reload"))]
runner
.filter_run("tests/features", |_, _, sc| !sc.tags.iter().any(|t| t == "hot-reload"))
.await;
}