Zero tests across all three crates. cargo test runs 0 tests.
High-value targets
element_map.rs — round-trip serialization (save → load → verify refs match)
snap/compressor.rs — element grouping under section headings
snap/extractor.rs — DOM node filtering, AX tree merging
record/workflow.rs — save/load/list/delete across project and user scope
record/recorder.rs — step recording, state persistence
record/replay.rs — replay engine with all command types
Nice to have
action/ — CDP command execution (needs mock transport or integration test with Chrome)
session/ — save/load cookie/localStorage round-trip
read/ — markdown output formatting
Integration tests that launch Chrome are expensive but would catch real regressions. Could gate behind a feature flag or --ignored tests.
Zero tests across all three crates.
cargo testruns 0 tests.High-value targets
element_map.rs— round-trip serialization (save → load → verify refs match)snap/compressor.rs— element grouping under section headingssnap/extractor.rs— DOM node filtering, AX tree mergingrecord/workflow.rs— save/load/list/delete across project and user scoperecord/recorder.rs— step recording, state persistencerecord/replay.rs— replay engine with all command typesNice to have
action/— CDP command execution (needs mock transport or integration test with Chrome)session/— save/load cookie/localStorage round-tripread/— markdown output formattingIntegration tests that launch Chrome are expensive but would catch real regressions. Could gate behind a feature flag or
--ignoredtests.