@uuv/playwright
Version:
A solution to facilitate the writing and execution of E2E tests understandable by any human being using cucumber(BDD) and playwright
22 lines (21 loc) • 619 B
JavaScript
;
/**
* Software Name : UUV
*
* SPDX-License-Identifier: MIT
*
* This software is distributed under the MIT License,
* see the "LICENSE" file for more details
*
* Authors: NJAKO MOLOM Louis Fredice & SERVICAL Stanley
* Software description: Make test writing fast, understandable by any human
* understanding English or French.
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.Context = void 0;
const runner_commons_1 = require("@uuv/runner-commons");
class Context {
withinFocusedElement;
timeout = runner_commons_1.DEFAULT_TIMEOUT;
}
exports.Context = Context;