@o3r/testing
Version:
The module provides testing (e2e, unit test) utilities to help you build your own E2E pipeline integrating visual testing.
27 lines • 886 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.O3rGroup = void 0;
var index_1 = require("../errors/index");
/**
* Mock for GroupProfile class.
* This class is used for fixture compilation purpose.
*/
var O3rGroup = /** @class */ (function () {
function O3rGroup(_sourceElement) {
}
Object.defineProperty(O3rGroup.prototype, "items", {
/** @inheritDoc */
get: function () {
throw new index_1.TranspilationPurposeOnlyError('Should target a proper implementation');
},
enumerable: false,
configurable: true
});
/** @inheritDoc */
O3rGroup.prototype.isValidGroup = function () {
throw new index_1.TranspilationPurposeOnlyError('Should target a proper implementation');
};
return O3rGroup;
}());
exports.O3rGroup = O3rGroup;
//# sourceMappingURL=group.js.map