@serenity-js/core
Version:
The core Serenity/JS framework, providing the Screenplay Pattern interfaces, as well as the test reporting and integration infrastructure
21 lines • 535 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.NoOpDiffFormatter = void 0;
/**
* A no-op [`DiffFormatter`](https://serenity-js.org/api/core/interface/DiffFormatter/) that produces output identical to input.
*
* @group Errors
*/
class NoOpDiffFormatter {
expected(line) {
return line;
}
received(line) {
return line;
}
unchanged(line) {
return line;
}
}
exports.NoOpDiffFormatter = NoOpDiffFormatter;
//# sourceMappingURL=NoOpDiffFormatter.js.map
;