21 lines
733 B
Rust
21 lines
733 B
Rust
//! Project Mycelium UX Test Suite
|
|
//!
|
|
//! Complete end-to-end testing framework for validating the entire user experience
|
|
//! as specified in the roadmap Section 9.
|
|
//!
|
|
//! ## Test Categories:
|
|
//! - Public Access Tests (information pages, anonymous marketplace browsing)
|
|
//! - Authentication Tests (registration, login, cart migration)
|
|
//! - Shopping Tests (buy now, add to cart, checkout flows)
|
|
//! - Dashboard Tests (user dashboard, wallet, orders, settings)
|
|
//! - Provider Tests (farmer, app provider, service provider workflows)
|
|
//! - Advanced Features (SSH keys, VM/Kubernetes, modal workflows)
|
|
|
|
pub mod environment;
|
|
pub mod fixtures;
|
|
pub mod flows;
|
|
pub mod utils;
|
|
pub mod reporting;
|
|
|
|
pub use environment::*;
|
|
pub use utils::*; |