TestCoverageMapResponse Type — typescript-sdk Architecture
Architecture documentation for the TestCoverageMapResponse type/interface in TestCoverageMapResponse.ts from the typescript-sdk codebase.
Entity Profile
Source Code
src/models/TestCoverageMapResponse.ts lines 58–95
export interface TestCoverageMapResponse {
/**
*
* @type {TestCoverageMapMetadata}
* @memberof TestCoverageMapResponse
*/
metadata: TestCoverageMapMetadata;
/**
* Production functions with no test coverage (not reachable from any test function).
* @type {Array<UntestedFunction>}
* @memberof TestCoverageMapResponse
*/
untestedFunctions: Array<UntestedFunction>;
/**
* Production functions with test coverage (reachable from at least one test function).
* @type {Array<TestedFunction>}
* @memberof TestCoverageMapResponse
*/
testedFunctions: Array<TestedFunction>;
/**
* Detected test files with coverage statistics.
* @type {Array<TestFileInfo>}
* @memberof TestCoverageMapResponse
*/
testFiles: Array<TestFileInfo>;
/**
* Coverage breakdown by domain classification.
* @type {Array<CoverageByDomain>}
* @memberof TestCoverageMapResponse
*/
coverageByDomain?: Array<CoverageByDomain>;
/**
* Coverage breakdown by production file.
* @type {Array<CoverageByFile>}
* @memberof TestCoverageMapResponse
*/
coverageByFile: Array<CoverageByFile>;
}
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free