@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.
16 lines (15 loc) • 487 B
TypeScript
export interface NetworkObserverOptions {
content?: boolean;
excludePaths?: (string | RegExp)[];
includeHosts?: (string | RegExp)[];
includeMimes?: string[];
excludeStatusCodes?: number[];
/**
* @deprecated As of version 6, this field will be removed. Use {@link excludeStatusCodes} instead.
*/
minStatusCodeToInclude?: number;
/**
* @deprecated As of version 6, this flag will be disabled by default.
*/
includeBlobs?: boolean;
}