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.

12 lines (11 loc) 297 B
import type { Connection } from './Connection'; export interface ConnectionOptions { port: number; host: string; maxRetries?: number; initialBackoff?: number; maximumBackoff?: number; } export interface ConnectionFactory { create(options: ConnectionOptions): Connection; }