错误:量角器中指定了多个配置文件

时间:2014-11-24 18:38:16

标签: visual-studio protractor

我尝试使用本教程配置visual studio来运行量角器测试http://goo.gl/lsjMEi

我已将node_modules \ protractor \ lib \ cli.js包含到我的项目中,并设置为node.js启动文件,在我的项目中,我已将我的conf.js定义为脚本agruments 。当我运行我的项目时,我收到此消息:

  

错误:指定了多个配置文件

这是我的项目结构:

Structure

2 个答案:

答案 0 :(得分:1)

我发现了问题。我在项目属性中设置了conf.js的整个路径只是 conf.js

答案 1 :(得分:0)

另一种可能的解决方案是确保在任何参数之前添加“-”。

protractor config param="foo" //This will fail with 'more than one config file'


protractor config --param="foo" //This will succeed