Files
leptos/examples/todo_app_sqlite/e2e/tests/app_suite.rs
2023-09-13 19:57:50 -04:00

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(())
}