UNPKG

@neuralegion/cypress-har-generator

Version:

The Cypress plugin for generating HTTP Archive (HAR) files is a tool that allows developers and QA engineers to capture detailed information about network requests made during the execution of Cypress tests.

10 lines (9 loc) 259 B
import type { HarExporter } from './HarExporter'; export interface HarExporterOptions { rootDir: string; filter?: string; transform?: string; } export interface HarExporterFactory { create(options: HarExporterOptions): Promise<HarExporter>; }