//! WASM and browser testing fixtures.
//!
//! This module contains two categories of fixtures:
//!
//! - **In-browser WASM fixtures** (`browser` submodule): Fixtures for testing WASM
//! frontends running inside the browser (requires `wasm32` target + `wasm` feature).
//! - **E2E browser testing** (`e2e` submodule): Fixtures for controlling a browser
//! externally via WebDriver/fantoccini (native target, `e2e` feature).
// In-browser WASM test fixtures (wasm32 target only)
// Backward-compatible re-exports: all items previously in fixtures::wasm::*
// remain accessible at the same path after the browser submodule extraction.
pub use ;
// MSW fixtures (requires wasm + msw features)
pub use ;
// E2E browser testing fixtures via WebDriver (native target only)
// E2E browser testing fixtures via Chrome DevTools Protocol (native target only)