UNPKG

html-reporter

Version:

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

14 lines (13 loc) 457 B
import { ValueOf } from 'type-fest'; export declare const ClientEvents: { readonly BEGIN_SUITE: "beginSuite"; readonly BEGIN_STATE: "beginState"; readonly TEST_RESULT: "testResult"; readonly RETRY: "retry"; readonly ERROR: "err"; readonly END: "end"; readonly CONNECTED: "connected"; readonly DOM_SNAPSHOTS: "DOM_SNAPSHOTS"; }; export type ClientEvents = typeof ClientEvents; export type ClientEvent = ValueOf<ClientEvents>;