#![allow(missing_docs)]
#![allow(
clippy::needless_pass_by_value,
clippy::needless_pass_by_ref_mut,
clippy::items_after_statements,
clippy::too_many_lines,
clippy::trivial_regex
)]
mod steps;
use cucumber::World;
use steps::RedactWorld;
#[tokio::test(flavor = "multi_thread")]
async fn bdd() {
RedactWorld::cucumber()
.with_default_cli()
.fail_on_skipped()
.run_and_exit("tests/features")
.await;
}