leptos/examples/todo_app_sqlite_csr/e2e/tests/app_suite.rs

15 lines
252 B
Rust

mod fixtures;
use anyhow::Result;
use cucumber::World;
use fixtures::world::AppWorld;
#[tokio::main]
async fn main() -> Result<()> {
AppWorld::cucumber()
.fail_on_skipped()
.run_and_exit("./features")
.await;
Ok(())
}