@o3r/testing
Version:
The module provides testing (e2e, unit test) utilities to help you build your own E2E pipeline integrating visual testing.
20 lines • 718 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.O3rPageFixture = void 0;
const index_1 = require("../../errors/index");
const component_fixture_1 = require("./component-fixture");
/**
* Implementation of the page fixture dedicated to Angular.
* Pages are not supposed to be used in a Angular environment!
*/
class O3rPageFixture extends component_fixture_1.O3rComponentFixture {
constructor(element) {
super(element);
}
/** @inheritdoc */
getTitle() {
throw new index_1.TranspilationPurposeOnlyError('getTitle() operation has no sense in Angular context');
}
}
exports.O3rPageFixture = O3rPageFixture;
//# sourceMappingURL=page-fixture.js.map