17 lines
364 B
Rust
17 lines
364 B
Rust
//! UX Test Flows
|
|
//!
|
|
//! Complete end-to-end user flow tests organized by category
|
|
|
|
pub mod public_access;
|
|
pub mod authentication;
|
|
pub mod shopping;
|
|
pub mod dashboard;
|
|
pub mod provider_workflows;
|
|
pub mod settings;
|
|
|
|
pub use public_access::*;
|
|
pub use authentication::*;
|
|
pub use shopping::*;
|
|
pub use dashboard::*;
|
|
pub use provider_workflows::*;
|
|
pub use settings::*; |