ec3a187dd7
Project CI / AI game creator shell Rust crates (push) Successful in 1m11s
Project CI / AI game creator shell Rust smoke (push) Successful in 1m34s
Project CI / Backend tests (push) Successful in 4m46s
Project CI / AI game creator shell Rust lane 2/2 (push) Successful in 8m31s
Project CI / AI game creator shell Rust lane 1/2 (push) Successful in 9m41s
Project CI / Frontend tests (push) Successful in 2m19s
Project CI / Native shell tests (push) Successful in 7m5s
Project CI / AI game creator shell web tests (push) Successful in 1m54s
Project CI / Repository checks (push) Successful in 2m36s
Reviewed-on: https://git.genarrative.world/git/GenarrativeAI/Genarrative/pulls/503 Co-authored-by: Linghong <ink29535@proton.me> Co-committed-by: Linghong <ink29535@proton.me>
32 lines
1.0 KiB
Rust
32 lines
1.0 KiB
Rust
mod capture;
|
|
mod cdp;
|
|
mod discovery;
|
|
mod evidence;
|
|
mod model;
|
|
mod network_policy;
|
|
mod playtest;
|
|
mod process;
|
|
mod sweep;
|
|
|
|
#[cfg(test)]
|
|
pub use discovery::discover_chrome_or_edge;
|
|
#[allow(unused_imports)]
|
|
pub use model::{
|
|
BrowserCanvasProbe, BrowserConsoleMessage, BrowserException, BrowserExpectedTextMatch,
|
|
BrowserFailedRequest, BrowserIdentity, BrowserPlaytestAssertion, BrowserPlaytestPhase,
|
|
BrowserPlaytestResult, BrowserPlaytestScenario, BrowserValidationEvidencePaths,
|
|
BrowserValidationInput, BrowserValidationResult, BrowserValidationViewport,
|
|
BrowserViewportPlaytestResult, BrowserViewportValidationResult, DiscoveredBrowser,
|
|
DiscoveredBrowserKind,
|
|
};
|
|
pub(crate) use process::check_browser_health;
|
|
pub use process::validate_local_preview_in_browser;
|
|
pub(crate) use process::validate_local_preview_in_browser_with_cancellation;
|
|
pub(crate) use sweep::sweep_stale_browser_processes;
|
|
|
|
pub(crate) use model::required_viewport_playtests_passed;
|
|
pub(crate) use playtest::browser_playtest_scenario_fingerprint;
|
|
|
|
#[cfg(test)]
|
|
mod tests;
|