1 | import { ExecutableItem, Label, Status } from "./model.js";
|
2 | export declare const md5: (data: string) => string;
|
3 | export declare const getLabelsFromEnv: () => Label[];
|
4 | export declare const escapeRegExp: (value: string) => string;
|
5 | export declare const isAnyStepFailed: (item: ExecutableItem) => boolean;
|
6 | export declare const isAllStepsEnded: (item: ExecutableItem) => boolean;
|
7 | export declare const readImageAsBase64: (filePath: string) => Promise<string | undefined>;
|
8 | export declare const stripAscii: (str: string) => string;
|
9 | export declare const allureReportFolder: (outputFolder?: string) => string;
|
10 | export declare const defaultReportFolder: () => string;
|
11 | export declare const allureIdRegexp: RegExp;
|
12 | export declare const allureIdRegexpGlobal: RegExp;
|
13 | export declare const allureLabelRegexp: RegExp;
|
14 | export declare const allureLabelRegexpGlobal: RegExp;
|
15 | export declare const getStatusFromError: (error: Error) => Status;
|
16 | export declare const getSuitesLabels: (suites: string[]) => Label[];
|
17 | export declare const serialize: (val: unknown) => string;
|
18 | export declare const extractMetadataFromString: (title: string) => {
|
19 | labels: Label[];
|
20 | cleanTitle: string;
|
21 | };
|