列出 Cucumber 中所有可用的标签
是否有命令行选项可以列出黄瓜测试套件中的所有标签?
例如,我想要类似的东西:
cucumber --show-tags foo.feature
这会给我类似的东西:
@ci
@development
@regression
@wip
Is there a command line option to list all the tags in your cucumber test suite?
For example, I would want something like:
cucumber --show-tags foo.feature
That would give me something like:
@ci
@development
@regression
@wip
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于单个文件:
您还可以找到目录中所有功能的标签:
甚至是与特定标签共享的功能:
为所有这些生成的输出是 wiki 样式表:
For a single file:
You could also find the tags of all features in a directory:
Or even features that are shared with a particular tag:
The output generated for all these is a wiki style table: