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) 242 B
import type { Network } from '../network'; import type { NetworkOptions } from './NetworkOptions'; export interface Connection { open(): Promise<void>; close(): Promise<void>; discoverNetwork(options?: NetworkOptions): Network; }