UNPKG

@qualitywatcher/codeceptjs-reporter

Version:
24 lines (23 loc) 752 B
import { Case, QualityWatcherResult } from "./qualitywatcher.interface"; export declare const logger: (message: any) => void; export declare const msToTime: (ms: any) => string; export declare const getBrowserInfo: (testResults: any) => string; export declare const checkForEnvironmentalVariables: () => void; export declare const createTestData: (testResult: { case?: Case; suiteId?: number; testId?: number; status: string; duration: number; error?: string; }) => QualityWatcherResult; export declare const getSuiteAndCaseIds: (title: any) => { suite_id: number; test_id: number; }; export declare const humanizeStep: (steps: { name: string; actor: string; args: any[]; prefix: string; }[]) => string;