UNPKG

html-reporter

Version:

Html-reporter and GUI for viewing and managing results of a tests run. Currently supports Testplane and Hermione.

8 lines (7 loc) 413 B
import React from 'react'; import { TestStatus } from "../../../constants"; import { ImageFile } from "../../../types"; export declare const getIconByStatus: (status: TestStatus) => React.JSX.Element; export declare const getImageDisplayedSize: (image: ImageFile) => string; export declare const stringify: (value: unknown) => string; export declare const makeLinksClickable: (text: string) => React.JSX.Element;