UNPKG

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