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) 411 B
import actionNames from "../action-names"; import { Action } from "./types"; export type ProcessBeginAction = Action<typeof actionNames.PROCESS_BEGIN>; export declare const processBegin: () => ProcessBeginAction; export type ProcessEndAction = Action<typeof actionNames.PROCESS_END>; export declare const processEnd: () => ProcessEndAction; export type ProcessingAction = ProcessBeginAction | ProcessEndAction;