/** * Missing-tests detector. * * Every governed command should produce or connect to conformance evidence. * This detector loads commands.json (from `manifest emit registries`) and * verifies that each governed command's commandId is referenced by at * least one test or fixture file under the audited root. * * A "reference" is a substring match of the commandId (e.g. `Recipe.create`) * in any *.test.ts, *.test.js, *.conformance.json, *.fixture.json, * conformance fixture, or harness script file. The detector deliberately * uses substring matching rather than runtime introspection so it works * across testing frameworks. */ import type { Detector } from './types.js'; export declare const missingTestsDetector: Detector; //# sourceMappingURL=missing-tests.d.ts.map