tia
Version:
Time is All (logs driven test engine with ExtJs support)
21 lines (16 loc) • 515 B
text/typescript
export const consoleLogPrefix = ''; // LOG:
export const errPrefix = 'ERR: ';
export const excPrefix = 'EXC: ';
export const indentation = '| ';
// TODO: Check that engineConsts already added to gT.
export let defLLLogAction: boolean | null = null;
export function setDefLLLogAction(enable: boolean) {
defLLLogAction = enable;
}
export function getDefLLLogAction() {
if (defLLLogAction === null) {
return gT.engineConsts.defLLLogAction;
}
return defLLLogAction;
}
// export const firstIndent = '|-'