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.

7 lines (6 loc) 191 B
import type { NetworkRequest } from './NetworkRequest'; export interface HarExporter { readonly path: string; write(networkRequest: NetworkRequest): Promise<void>; end(): void; }