UNPKG

intern

Version:

Intern. A next-generation code testing stack for JavaScript.

11 lines (10 loc) 380 B
import Reporter, { ReporterProperties } from './Reporter'; import { Executor } from '../executors/Executor'; export default class JUnit extends Reporter { readonly filename: string | undefined; constructor(executor: Executor, options?: Partial<JUnitProperties>); runEnd(): void; } export interface JUnitProperties extends ReporterProperties { filename?: string; }