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) 165 B
import type { Entry, Har } from 'har-format'; export declare class HarBuilder { private readonly entries; constructor(entries: Entry[]); build(): Har; }