jest-allure2-reporter
Version:
Idiomatic Jest reporter for Allure Framework
11 lines (10 loc) • 419 B
TypeScript
import type { ManifestHelper } from 'jest-allure2-reporter';
export type ImportModuleFunction = (path: string) => Record<string, any> | Promise<Record<string, any>>;
export declare class ManifestResolver {
private readonly cwd;
private readonly importFn;
constructor(cwd: string, importFunction: ImportModuleFunction);
extract: ManifestHelper;
private resolveManifestPath;
private resolveCJS;
}