UNPKG

html-reporter

Version:

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

9 lines (8 loc) 445 B
import { Action } from "./types"; import actionNames from "../action-names"; type SetGuiServerConnectionStatusAction = Action<typeof actionNames.SET_GUI_SERVER_CONNECTION_STATUS, { isConnected: boolean; }>; export declare const setGuiServerConnectionStatus: (payload: SetGuiServerConnectionStatusAction['payload']) => SetGuiServerConnectionStatusAction; export type GuiServerConnectionAction = SetGuiServerConnectionStatusAction; export {};