html-reporter
Version:
Html-reporter and GUI for viewing and managing results of a tests run. Currently supports Testplane and Hermione.
19 lines (18 loc) • 858 B
TypeScript
import { ReactNode } from 'react';
import { ResultEntity } from "../../types/store";
import { HtmlReporterValues } from "../../../../plugin-api";
import { ReporterConfig } from "../../../../types";
export interface MetaInfoProps {
resultId: string;
qa?: string;
}
interface MetaInfoInternalProps extends MetaInfoProps {
result: ResultEntity;
testName: string;
metaInfoBaseUrls: ReporterConfig['metaInfoBaseUrls'];
apiValues: Pick<HtmlReporterValues, 'extraItems' | 'metaInfoExtenders'>;
baseHost: string;
}
declare function MetaInfoInternal(props: MetaInfoInternalProps): ReactNode;
export declare const MetaInfo: import("react-redux").ConnectedComponent<typeof MetaInfoInternal, import("react-redux").Omit<MetaInfoInternalProps, "baseHost" | "metaInfoBaseUrls" | "result" | "apiValues" | "testName"> & MetaInfoProps>;
export {};