/** * Schema Version Tests — Core Package * * Unit tests for schema-version.ts — centralized versioning for runtime-v2 contracts. * * Tests verify: * - schemaRef() produces correct "kind-vN" format for valid inputs * - RUNTIME_V2_SCHEMA_VERSION constant matches expected literal "1.0.0" * - RuntimeV2SchemaVersionSchema accepts only "1.0.0" (exact-match literal) * - SchemaVersionRefSchema accepts strings (open-ended contract — not a literal) * - Edge cases: zero version, large version, non-integer version numbers * * ERR checklist: * - ERR-088: asserts exact value, not merely truthy — a drift from "1.0.0" to "1.0.1" * must fail these tests rather than pass with a generic "is string" check. * - ERR-089: branch coverage on both accept and reject paths for each check. */ export {}; //# sourceMappingURL=schema-version.test.d.ts.map