codeceptjs-testit-reporter
Version:
Plugin for sending CodeceptJS test run reports to TestIT
8 lines (7 loc) • 532 B
TypeScript
import type { CodeceptJsTest } from "./types";
export declare const parseError: (e: unknown) => string;
export declare const parseTestError: (test: CodeceptJsTest) => string | undefined;
export declare const getTestId: (test: CodeceptJsTest) => string;
export declare const cjs2testItStatus: (status?: string) => import("testit-api-client").OutcomeType | undefined;
export declare const cjs2testItStepStatus: (status?: string) => import("testit-api-client").OutcomeType | undefined;
export declare const log: (msg: string) => void;