@mmisty/cypress-allure-adapter
Version:
cypress allure adapter to generate allure results during tests execution (Allure TestOps compatible)
12 lines (11 loc) • 451 B
TypeScript
import { EventEmitter } from 'events';
export declare class CustomCommandsHandler {
private events;
private ignoreCommands;
private wrapCustomCommandsSetup;
private wrappedFunction;
constructor(events: EventEmitter, ignoreCommands: () => string[], wrapCustomCommandsSetup: () => boolean | string[]);
wrapCustomCommandsFunction(commands: string[], isExclude: boolean): void;
wrap(): void;
wrapGroupedCommands(): void;
}