黄瓜测试后我需要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尝试不同的变体,但得到相同的结果。
答案 0 :(得分:0)
尝试:
bundle exec cucumber -- -f json -o cucumber.json
要么:
bin/rails cucumber -- -f json -o cucumber.json
双短划线应确保将参数传递给cucumber
,而不是bundle
或exec