我正在玩黄瓜但由于某种原因,功能和方案没有输出到控制台。
当我跑步时
cucumber features
我得到了
Using the default profile...
....
1 scenario (1 passed)
4 steps (4 passed)
0m0.071s
所以我的测试已经通过,但我无法看到我的功能或场景。是否有命令行标志或什么?
答案 0 :(得分:1)
是的,您可以使用-f pretty
resp。 --format pretty
。
答案 1 :(得分:1)
我也非常喜欢html输出,特别是在调试我的步骤定义时:
cucumber features -f html -o "path/to/some/file.html"