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) 751 B
import actionNames from "../action-names"; import { Action } from "./types"; import { SortDirection } from "../../new-ui/types/store"; type SetCurrentSortByExpressionAction = Action<typeof actionNames.SORT_TESTS_SET_CURRENT_EXPRESSION, { expressionIds: string[]; }>; export declare const setCurrentSortByExpression: (payload: SetCurrentSortByExpressionAction['payload']) => SetCurrentSortByExpressionAction; type SetSortByDirectionAction = Action<typeof actionNames.SORT_TESTS_SET_DIRECTION, { direction: SortDirection; }>; export declare const setSortByDirection: (payload: SetSortByDirectionAction['payload']) => SetSortByDirectionAction; export type SortTestsAction = SetCurrentSortByExpressionAction | SetSortByDirectionAction; export {};