/** * Utilities for scanning existing test files */ export interface TestedEndpoint { method: string; path: string; testFile: string; } /** * Scans test directory for tested endpoints */ export declare function scanTestFiles(testDir: string): Promise; /** * Recursively finds test files in a directory */ export declare function findTestFiles(dir: string): string[]; /** * Checks if a file is a test file */ export declare function isTestFile(filePath: string): boolean; /** * Extracts tested endpoints from test file content */ export declare function extractTestedEndpoints(content: string, testFile: string): TestedEndpoint[]; /** * Normalizes a path from URL (removes query params, ensures starts with /) */ export declare function normalizePathFromUrl(path: string): string; //# sourceMappingURL=test-scanner-utils.d.ts.map