UNPKG

testeranto

Version:

the AI powered BDD test framework for typescript projects

16 lines (15 loc) 468 B
type TestPageViewProps = { projectName: string; testName: string; decodedTestPath: string; runtime: string; logs: Record<string, string>; testsExist: boolean; errorCounts: { runTimeErrors: number; typeErrors: number; staticErrors: number; }; }; export declare const TestPageView: ({ projectName, testName, decodedTestPath, runtime, testsExist, errorCounts, logs, }: TestPageViewProps) => JSX.Element; export {};