1 | import Reporter, { ReporterProperties } from './Reporter';
|
2 | import { Executor } from '../executors/Executor';
|
3 | export default class JUnit extends Reporter {
|
4 | readonly filename: string | undefined;
|
5 | constructor(executor: Executor, options?: Partial<JUnitProperties>);
|
6 | runEnd(): void;
|
7 | }
|
8 | export interface JUnitProperties extends ReporterProperties {
|
9 | filename?: string;
|
10 | }
|