cypress-terminal-report
Version:
Better terminal and file output for cypress test logs.
8 lines (7 loc) • 508 B
TypeScript
import BaseOutputProcessor, { IOutputProcecessor } from './BaseOutputProcessor';
import type { AllMessages, CustomOutputProcessorCallback, PluginOptions } from '../installLogsPrinter.types';
export default class CustomOutputProcessor extends BaseOutputProcessor implements IOutputProcecessor {
protected processorCallback: CustomOutputProcessorCallback;
constructor(file: string, options: PluginOptions, processorCallback: CustomOutputProcessorCallback);
write(allMessages: AllMessages): void;
}