//! E2E integration tests for concrete operations. //! //! Each submodule under `e2e::` covers one op end-to-end: dispatch → //! pipeline → witness verification → external observer round-trip. //! The `e2e::::...` test path matches the gate-filter convention //! `cargo test -p ontoref-ops e2e::` so each op gate isolates //! its own surface. mod e2e { pub mod cross_domain; pub mod extra_ops; pub mod move_fsm_state; #[cfg(feature = "substrate")] pub mod witness_seam_full_cycle; }