UNPKG

@uuv/cypress

Version:

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

23 lines (22 loc) 745 B
#!/usr/bin/env node "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.main = main; const runner_commons_1 = require("@uuv/runner-commons"); const runner_cypress_1 = require("./runner-cypress"); /** * 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. */ async function main(projectDir = "./uuv") { const engine = new runner_commons_1.UUVCliEngine(new runner_cypress_1.UUVCliCypressRunner(projectDir)); engine.execute(); }