UNPKG

@uuv/playwright

Version:

A solution to facilitate the writing and execution of E2E tests understandable by any human being using cucumber(BDD) and playwright

23 lines (22 loc) 801 B
#!/usr/bin/env node "use strict"; /** * 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.main = main; const runner_commons_1 = require("@uuv/runner-commons"); const runner_playwright_1 = require("./runner-playwright"); async function main(projectDir = "./uuv", tempDir = "uuv/.uuv-features-gen") { const engine = new runner_commons_1.UUVCliEngine(new runner_playwright_1.UUVCliPlaywrightRunner(projectDir, tempDir)); engine.execute(); }