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