@honeybook/jest-stare
Version:
jest html reporter (results processor) to view HTML jest results, save raw JSON, and invoke multiple reporters
24 lines (23 loc) • 1.08 kB
TypeScript
export declare class Constants {
static readonly NAME = "jest-stare";
static readonly LOGO: string;
static readonly SUFFIX: string;
static readonly DEFAULT_RESULTS_DIR: string;
static readonly HTML_EXTENSION = ".html";
static readonly MAIN_HTML: string;
static readonly JEST_STARE_JS = "view.js";
static readonly REPORTER_WRITTING = " will write each completed run to ";
static readonly RESULTS_RAW = "jest-results.json";
static readonly JEST_STARE_CSS: string;
static readonly TEMPLATE_HTML = "template.html";
static readonly CSS_DIR = "css/";
static readonly JS_DIR = "js/";
static readonly IMAGE_SNAPSHOT_DIFF_DIR = "image_snapshot_diff/";
static readonly TEST_RESULTS_PROCESSOR = "--testResultsProcessor";
static readonly REPORTERS = "--reporters";
static readonly LOG_MESSAGE = ": wrote output report to ";
static readonly MERGE_MESSAGE = ": will merge with ";
static readonly NO_INPUT: string;
static readonly NO_CLI_INPUT: string;
static readonly OVERRIDE_JEST_STARE_CONFIG: string;
}