@serenity-js/core
Version:
The core Serenity/JS framework, providing the Screenplay Pattern interfaces, as well as the test reporting and integration infrastructure
12 lines • 435 B
TypeScript
import type { DiffFormatter } from './DiffFormatter';
/**
* A no-op [`DiffFormatter`](https://serenity-js.org/api/core/interface/DiffFormatter/) that produces output identical to input.
*
* @group Errors
*/
export declare class NoOpDiffFormatter implements DiffFormatter {
expected(line: string): string;
received(line: string): string;
unchanged(line: string): string;
}
//# sourceMappingURL=NoOpDiffFormatter.d.ts.map