testcafe-reporter-cucumber-json
Version:
Cucumber JSON TestCafe reporter plugin.
10 lines (9 loc) • 641 B
TypeScript
import { CallsiteInterface, StackFrame } from './reporter-interface';
export declare const filterStackFramesIn: (callsite: CallsiteInterface) => void;
export declare const getCurrentAppStackFramesFrom: (callsite: CallsiteInterface) => StackFrame[];
export declare const getFileNameFrom: (stackFrame: StackFrame) => string | null | undefined;
export declare const isNodeModuleOrIsNullOrUndefined: (filePath: string | undefined | null) => boolean;
export declare const getAllFilesIn: (callsite: CallsiteInterface) => string[];
export declare const stackFramesOf: (filename: string) => {
in: (stackFrames: StackFrame[]) => StackFrame[];
};