twd-js
Version:
Test While Developing (TWD) - in-browser testing
30 lines (29 loc) • 703 B
TypeScript
import { TestCase } from '../twdRegistry';
interface TestListItemProps {
node: TestCase;
depth: number;
idx: number;
runTest: (i: number) => void;
}
export declare const statusStyles: (node: TestCase) => {
item: {
background: string;
};
container: {
borderLeft: string;
};
} | {
item: {
background: string;
};
container?: undefined;
};
export declare const assertStyles: (text: string) => {
color: string;
fontWeight: string;
} | {
color?: undefined;
fontWeight?: undefined;
};
export declare const TestListItem: ({ node, depth, idx, runTest }: TestListItemProps) => import("react/jsx-runtime").JSX.Element;
export {};