jest-allure2-reporter
Version:
Idiomatic Jest reporter for Allure Framework
6 lines (5 loc) • 446 B
TypeScript
import type { TestStepCustomizer } from 'jest-allure2-reporter';
import type { TestStepExtractor } from '../types';
export declare function testStep(customizer: null | undefined): undefined;
export declare function testStep<Context>(customizer: TestStepCustomizer<Context>): TestStepExtractor<Context>;
export declare function testStep<Context>(customizer: TestStepCustomizer<Context> | null | undefined): TestStepExtractor<Context> | undefined;