@o3r/testing
Version:
The module provides testing (e2e, unit test) utilities to help you build your own E2E pipeline integrating visual testing.
26 lines • 720 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.O3rGroup = void 0;
/**
* Implementation dedicated to Playwright.
*/
var O3rGroup = /** @class */ (function () {
function O3rGroup(sourceElement) {
this.sourceElement = sourceElement;
}
Object.defineProperty(O3rGroup.prototype, "items", {
/** @inheritDoc */
get: function () {
return this.sourceElement;
},
enumerable: false,
configurable: true
});
/** @inheritDoc */
O3rGroup.prototype.isValidGroup = function () {
return Promise.resolve(true);
};
return O3rGroup;
}());
exports.O3rGroup = O3rGroup;
//# sourceMappingURL=group.js.map