UNPKG

@o3r/testing

Version:

The module provides testing (e2e, unit test) utilities to help you build your own E2E pipeline integrating visual testing.

22 lines 820 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.O3rRadioGroup = void 0; var tslib_1 = require("tslib"); var index_1 = require("../../errors/index"); var group_1 = require("../group"); /** * Mock for RadioGroupProfile class. * This class is used for fixture compilation purpose. */ var O3rRadioGroup = /** @class */ (function (_super) { tslib_1.__extends(O3rRadioGroup, _super); function O3rRadioGroup(sourceElement) { return _super.call(this, sourceElement) || this; } O3rRadioGroup.prototype.getSelectedItem = function () { throw new index_1.TranspilationPurposeOnlyError('Should target a proper implementation'); }; return O3rRadioGroup; }(group_1.O3rGroup)); exports.O3rRadioGroup = O3rRadioGroup; //# sourceMappingURL=radio-group.js.map