UNPKG

@ivamuno/cypress-api-coverage

Version:

Cypress plugin to generate API coverage reports

25 lines (24 loc) 646 B
export interface RecordOptions { rootDir: string; filter?: string; transform?: string; excludePaths?: (string | RegExp)[]; includeHosts?: (string | RegExp)[]; excludeStatusCodes?: number[]; } export interface SaveOptions { fileName: string; outDir: string; } export interface ComputeCoverageOptions { suiteName: string; outDir: string; specsPath: string; includeHosts: { host: string; replacement?: string; }[]; outputName?: string; } export declare const install: (on: Cypress.PluginEvents) => void; export { ensureBrowserFlags } from '@neuralegion/cypress-har-generator';