UNPKG

cypress-terminal-report

Version:

Better terminal and file output for cypress test logs.

9 lines (8 loc) 355 B
import type { ExtendedSupportOptions } from '../installLogsCollector.types'; export default class LogFormat { protected config: ExtendedSupportOptions; protected messageProcessors: Array<(log: any) => string>; constructor(config: ExtendedSupportOptions); formatXhrLog(xhrLog: any): string; formatXhrData(body: any): Promise<string>; }