UNPKG

testeranto

Version:

the AI powered BDD test framework for typescript projects

16 lines (15 loc) 388 B
type TestStatusBadgeProps = { testName: string; testsExist?: boolean; runTimeErrors: number; typeErrors: number; staticErrors: number; variant?: 'compact' | 'full'; testData?: { fails?: number; features?: any[]; artifacts?: any[]; }; }; export declare const TestStatusBadge: (props: TestStatusBadgeProps) => JSX.Element; export {};