/** * Maps drift results to the test files that cover the affected domains. * Scans test files for // openlore: {JSON} metadata tags (written by openlore test). * No LLM required. */ import type { DriftResult } from '../../types/index.js'; export interface DomainTestSuggestion { domain: string; testFiles: string[]; scenarioCount: number; } export interface TestSuggestion { domains: DomainTestSuggestion[]; /** Flat list of all unique test files for easy copy-paste into a test runner */ allFiles: string[]; } export declare function suggestTestsForDrift(driftResult: DriftResult, rootPath: string, testDirs?: string[]): Promise; //# sourceMappingURL=test-suggester.d.ts.map