UNPKG

@o3r/testing

Version:

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

21 lines 489 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.O3rGroup = void 0; /** * Implementation dedicated to Playwright. */ 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