jest-allure2-reporter
Version:
Idiomatic Jest reporter for Allure Framework
17 lines (12 loc) • 446 B
text/typescript
import { randomBytes } from 'node:crypto';
import type { AllureTestCaseResult } from 'jest-allure2-reporter';
import { log } from '../../logger';
import { md5 } from '../../utils';
export function hashHistoryId(result: AllureTestCaseResult) {
const { fullName, historyId } = result;
if (!historyId) {
log.warn(`Detected empty "historyId" in test: ${fullName}`);
return md5(randomBytes(16));
}
return md5(String(historyId));
}