codeceptjs-testit-reporter
Version:
Plugin for sending CodeceptJS test run reports to TestIT
24 lines (23 loc) • 665 B
TypeScript
import type { OutcomeType } from "testit-api-client/dist/types/outcome";
export declare const TESTIT_STATUS: {
[key: string]: OutcomeType;
};
export declare const CJS_STATUS: {
PASSED: string;
FAILED: string;
SKIPPED: string;
FINISHED: string;
};
export declare const CJS_STEP_STATUS: {
SUCCESS: string;
FAILED: string;
};
export declare const CJS_2_TESTIT_STATUS_MAP: {
[x: string]: OutcomeType;
};
export declare const CJS_2_TESTIT_STEP_STATUS_MAP: {
[x: string]: OutcomeType;
};
export declare const CJS_NAMESPACE = "CodeceptJS";
export declare const PLUGIN_NAME = "TestIT";
export declare const FORCE_EXIT_SIGNALS: string[];