html-reporter
Version:
Html-reporter and GUI for viewing and managing results of a tests run. Currently supports Testplane and Hermione.
10 lines (9 loc) • 462 B
TypeScript
import { Action } from "./types";
import actionNames from "../action-names";
import { BrowserFeature } from "../../../constants/browser";
type SetBrowserFeaturesAction = Action<typeof actionNames.SET_BROWSER_FEATURES, {
browserFeatures: Record<string, BrowserFeature[]>;
}>;
export declare const setBrowserFeatures: (payload: SetBrowserFeaturesAction['payload']) => SetBrowserFeaturesAction;
export type BrowsersAction = SetBrowserFeaturesAction;
export {};