//! Shared test helpers. Each integration test imports this via `mod common;`
//! and `use common::*;`.
usejsonschema::{Draft, Validator};useserde_json::Value;pubfnbuild_validator(schema:&Value)-> Validator{jsonschema::options().with_draft(Draft::Draft202012).build(schema).expect("compile flow schema")}