Files
projectmycelium/tests/tests_archive/ux_suite/flows/mod.rs
2025-09-01 21:37:01 -04:00

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::*;