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.

8 lines (7 loc) 289 B
import type { Entry } from 'har-format'; export declare type Filter = (entry: Entry) => Promise<unknown> | unknown; export declare type Transformer = (entry: Entry) => Promise<Entry> | Entry; export interface DefaultHarExporterOptions { filter?: Filter; transform?: Transformer; }