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.

14 lines (13 loc) 513 B
export declare class StringUtils { static isString(value: unknown): value is string; static toRegexSource(pattern: RegExp | string): string; static toRegex(pattern: RegExp | string): RegExp; static dirname(path: string): string; static normalizeName(path: string, options?: { ext?: string; }): string; static escapeCharacters(str: string, chars?: string): string; private static fileNameIdx; private static removeLeadingSlash; private static removeTrailingSlash; }