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