leptos-browser-test 0.1.0

Leptos test-app launcher for browser-driven integration tests.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![doc = include_str!("../README.md")]

mod app;
mod cargo_leptos;
mod config;
mod error;
mod ports;
mod site;
mod startup;

pub use app::LeptosTestApp;
pub use cargo_leptos::CargoLeptosMode;
pub use config::LeptosTestAppConfig;
pub use error::LeptosBrowserTestError;
pub use site::SiteScheme;

pub use rootcause::prelude::ResultExt;
pub use rootcause::{Report, bail, report};