cypress-terminal-report
Version:
Better terminal and file output for cypress test logs.
11 lines (10 loc) • 409 B
TypeScript
import type { SupportOptions } from './installLogsCollector.types';
import type { LogType, Log, Severity } from './types';
/**
* Installs the logs collector for cypress. Needs to be added to support file.
*/
declare function installLogsCollector(config?: SupportOptions): void;
declare namespace installLogsCollector {
export { LogType, Log, Severity, SupportOptions };
}
export = installLogsCollector;