UNPKG

@serenity-js/core

Version:

The core Serenity/JS framework, providing the Screenplay Pattern interfaces, as well as the test reporting and integration infrastructure

17 lines 382 B
/** * A no-op [`DiffFormatter`](https://serenity-js.org/api/core/interface/DiffFormatter/) that produces output identical to input. * * @group Errors */ export class NoOpDiffFormatter { expected(line) { return line; } received(line) { return line; } unchanged(line) { return line; } } //# sourceMappingURL=NoOpDiffFormatter.js.map