TestFileInfo Type — typescript-sdk Architecture
Architecture documentation for the TestFileInfo type/interface in TestFileInfo.ts from the typescript-sdk codebase.
Entity Profile
Source Code
src/models/TestFileInfo.ts lines 21–46
export interface TestFileInfo {
/**
* File path relative to repository root.
* @type {string}
* @memberof TestFileInfo
*/
file: string;
/**
* Number of test functions defined in this file.
* @type {number}
* @memberof TestFileInfo
*/
testFunctions: number;
/**
* Number of unique production functions covered by tests in this file.
* @type {number}
* @memberof TestFileInfo
*/
productionFunctionsCovered: number;
/**
* Number of unique production files covered by tests in this file.
* @type {number}
* @memberof TestFileInfo
*/
productionFilesCovered: number;
}
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free