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) • 538 B
TypeScript
export default class RetrySwitcher extends React.Component<any, any, any> {
static propTypes: {
resultIds: PropTypes.Validator<(string | null | undefined)[]>;
retryIndex: PropTypes.Requireable<number>;
title: PropTypes.Requireable<string>;
onChange: PropTypes.Validator<(...args: any[]) => any>;
};
constructor(props: any);
constructor(props: any, context: any);
render(): import("react/jsx-runtime").JSX.Element | null;
}
import React from 'react';
import PropTypes from 'prop-types';