testeranto
Version:
the AI powered BDD test framework for typescript projects
15 lines (14 loc) • 314 B
text/typescript
export type ITestPageViewProps = {
projectName: string;
testName: string;
decodedTestPath: string;
runtime: string;
logs: Record<string, string>;
testsExist: boolean;
errorCounts: {
runTimeErrors: number;
typeErrors: number;
staticErrors: number;
};
isWebSocketConnected: boolean;
};