@o3r/testing
Version:
The module provides testing (e2e, unit test) utilities to help you build your own E2E pipeline integrating visual testing.
15 lines • 574 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.TranspilationPurposeOnlyError = void 0;
/**
* Exception to indicate that the code run is for transpilation purpose only.
* It should not be used during runtime process
*/
class TranspilationPurposeOnlyError extends Error {
constructor(message = 'Transpilation purpose only') {
super(message);
this.name = 'TranspilationPurposeOnly';
}
}
exports.TranspilationPurposeOnlyError = TranspilationPurposeOnlyError;
//# sourceMappingURL=transpilation-purpose-only.js.map