/** * Auto-Repair Module * * Automatic test failure repair using AI. */ export type { TestError, ErrorType, FixSuggestion, FixType, RepairAnalysis, FixResult, FileChange, RepairOptions, TestRepairResult } from './types.js'; export { analyzeTestError, classifyErrors, isAutoFixable, getCommonFixes, type ParsedError } from './utils/error-analyzer.js'; export { generateFixSuggestions, getQuickFixes, type SuggestionOptions } from './engine/suggestion-engine.js'; export { applyFixes, generateDiff, revertBackup, type FixerOptions } from './engine/fixer.js'; export { TestRepairer, analyzeTestErrors, createRepairJSONReport, type RepairerOptions, type RepairProgress, type RepairReport, type TestRunResult } from './repairer.js';