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) 496 B
/// <reference types="node" /> import { WriteStream } from 'fs'; export declare class FileManager { private static _instance; static get Instance(): FileManager; readFile(path: string): Promise<string | undefined>; writeFile(path: string, data: string): Promise<void>; createFolder(path: string): Promise<void>; removeFile(path: string): Promise<void>; exists(path: string): Promise<boolean>; createTmpWriteStream(): Promise<WriteStream>; private openTmpFd; }