UNPKG

cypress-terminal-report

Version:

Better terminal and file output for cypress test logs.

11 lines (9 loc) 250 B
declare namespace Cypress { import type {Log} from './src/installLogsCollector'; interface Cypress { TerminalReport: { getLogs(format: 'txt' | 'json'): string | null; getLogs(format?: 'none' = 'none'): Log[] | null; }; } }