如何用选项运行黄瓜测试?

时间:2017-07-11 07:59:57

标签: ruby-on-rails cucumber

黄瓜测试后我需要json报告。当我运行cucumber -format json -o cucumber.json时,一切正常。但是当我跑步时:

bundle exec rake cucumber -f json -o cucumber.json

错误:invalid option: -o

bin/rails cucumber -f json -o cucumber.json

错误:invalid option: -o

我使用--format,-f,-o, - out尝试不同的变体,但得到相同的结果。

1 个答案:

答案 0 :(得分:0)

尝试: bundle exec cucumber -- -f json -o cucumber.json 要么: bin/rails cucumber -- -f json -o cucumber.json

双短划线应确保将参数传递给cucumber,而不是bundleexec