unmock-jest
Version:
Jest reporter for [Unmock](https://unmock.io).
14 lines • 679 B
TypeScript
/// <reference types="jest" />
import { IReporterOptions } from "./options";
import { IJestData } from "./types";
export declare const write: (jestData: IJestData, options: IReporterOptions) => string;
export default class UnmockJestReporter implements jest.Reporter {
globalConfig: jest.GlobalConfig;
reporterOptions: Partial<IReporterOptions>;
readonly rootDir: string;
readonly options: IReporterOptions;
constructor(globalConfig: jest.GlobalConfig, reporterOptions: Partial<IReporterOptions>);
onRunStart(): void;
onRunComplete(_: Set<jest.Context>, results: jest.AggregatedResult): jest.Maybe<Promise<void>>;
}
//# sourceMappingURL=index.d.ts.map