通过节点的 index.js 以编程方式调用黄瓜 cli

Invoke cucumber cli programatically through index.js of node

我在 CucumberJS 和 selenium 节点中得到了一个自动化框架。但它有一个旧版本的黄瓜,它依赖于承诺。为了利用最新的同步步骤功能,我决定升级 cucumberJS 版本(1.3.3 到 4.2.1) 现在的问题是用于在 index.js 中以编程方式调用 cucumber cli 的代码不再起作用。我在步骤定义和 world.js 中进行了所有其他更改,但我无法弄清楚如何通过节点 运行 这个东西,比如

node index.js --tags @SampleFeature

这以前可以用于旧版本,但现在不行了。

之前有效的代码 -

// execute cucumber
let cucumberCli = Cucumber.Cli(process.argv);

cucumberCli.run(succeeded => {
  var code = succeeded ? 0 : 1;

 function exitNow() {
 process.exit(code);
  }

 if (process.stdout.write('')) {
   exitNow();
 } else {
   process.stdout.on('drain', exitNow);
  }
 });

现在版本更新后会报这样的错误

/Users/../node_modules/babel-runtime/helpers/classCallCheck.js:7
    throw new TypeError("Cannot call a class as a function");
    ^

TypeError: Cannot call a class as a function
    at exports.default (/Users/../node_modules/babel-runtime/helpers/classCallCheck.js:7:11)
    at Object.Cli (/Users/../node_modules/cucumber/lib/cli/index.js:78:34)
    at Object.<anonymous> (/Users/../index.js:90:10)
    at Module._compile (internal/modules/cjs/loader.js:678:30)
    at Object.Module._extensions..js (internal/modules/cjs/loader.js:689:10)
    at Module.load (internal/modules/cjs/loader.js:589:32)
    at tryModuleLoad (internal/modules/cjs/loader.js:528:12)
    at Function.Module._load (internal/modules/cjs/loader.js:520:3)
    at Function.Module.runMain (internal/modules/cjs/loader.js:719:10)
    at startup (internal/bootstrap/node.js:228:19)
    at bootstrapNodeJSCore (internal/bootstrap/node.js:576:3)

我在谷歌上搜索了很多,但没有找到替代方案。尝试了多种方法,如使用 new 关键字将 Cli 调用为 class,但没有用。尝试通过普通黄瓜 cli 运行 删除它并 运行ning,但没有用。

PS。我来自 Java 背景的 Cucumber,那里的事情更简单 :)

您需要创建一个新的 CLI 对象,然后使用它的 .run 方法:

let runArgs = ['The cucumber args array here'];
let cliArgs = {argv : runArgs, cwd: process.cwd(), stdout: process.stdout};
let cli = (new require('cucumber').Cli)(cliArgs);

cli.run(); //Returns a promise

作为参考,我对 Typescript 和 Cucumber 7.3.2 采用了相同的方法


import { Cli } from '@cucumber/cucumber';


const runArgs = ['-p', argv['profile'], '--tags', argv['tags'], '--fail-fast'];
const cliArgs = { argv: runArgs, cwd: process.cwd(), stdout: process.stdout };
const cli = new Cli(cliArgs);
await cli.run();