mirror of
https://github.com/leptos-rs/leptos.git
synced 2025-12-27 09:54:41 -05:00
15 lines
252 B
Rust
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(())
|
|
}
|