just-scripts
Version:
Just Stack Scripts
11 lines • 367 B
TypeScript
declare const DefaultReporter: any;
/**
* The purpose of this custom reporter is to prevent Jest from logging to stderr
* when there are no errors.
*/
declare class JestReporter extends DefaultReporter {
private _isLoggingError;
log(message: string): void;
printTestFileFailureMessage(...args: any[]): void;
}
//# sourceMappingURL=JestReporter.d.ts.map