gpt4 book ai didi

node.js - 如何通过 IntelliJ 运行/调试配置让 wdio 运行?

转载 作者:搜寻专家 更新时间:2023-11-01 00:36:18 28 4
gpt4 key购买 nike

我可以使用命令行运行测试

>  ./node_modules/.bin/wdio wdio.conf.js 

但是如果我尝试从 IntelliJ 的运行/调试配置运行它,我会遇到各种不同的错误。

Featurefile or directory:      /path_to_my_feature_file/myfeature.feature
Cucumber.js arguments:    wdio.conf.js
Executable path:                 /path_to_my_project/node_modules/.bin/wdio

给我

more than one config file specified



如果我删除 Cucumber Arguments,它就会无限期地运行。如果我停止它运行,我会得到错误

Failed loading configuration file

加载配置文件似乎存在某种问题,但我不知道如何解决。有什么建议么? wdio.conf.js 存在并位于项目根目录中。

最佳答案

WebStorm 不为 wdio 提供任何特殊支持测试运行者。但是您仍然可以使用 Node.js 运行配置来运行/调试测试,如下所示:

enter image description here

但是由于与使用非 tty 环境相关的问题(IDEA 中的 Node.js 运行控制台是非 tty),这并不是开箱即用的。作为解决方法,请尝试注释掉 if (process.stdin.isTTY)else分行 node_modules\webdriverio\build\lib\cli.js :

//if (process.stdin.isTTY) {
launch();
/*
} else {
var stdinData = '';
/!*
* get a list of spec files to run from stdin, overriding any other
* configuration suite or specs.
*!/
var stdin = process.openStdin();
stdin.setEncoding('utf8');
stdin.on('data', function (data) {
stdinData += data;
});
stdin.on('end', function () {
if (stdinData.length > 0) {
args['specs'] = stdinData.trim().split(/\r?\n/);
}
launch();
});
}*/

参见 WEB-31745

关于node.js - 如何通过 IntelliJ 运行/调试配置让 wdio 运行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50724279/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com