html-reporter
Version:
Html-reporter and GUI for viewing and managing results of a tests run. Currently supports Testplane and Hermione.
11 lines (10 loc) • 321 B
TypeScript
export declare const UNCHECKED = 0;
export declare const INDETERMINATE = 0.5;
export declare const CHECKED = 1;
declare const _default: {
UNCHECKED: number;
INDETERMINATE: number;
CHECKED: number;
};
export default _default;
export type CheckStatus = typeof UNCHECKED | typeof INDETERMINATE | typeof CHECKED;