列出 Cucumber 中所有可用的标签

发布于 2024-10-01 19:54:02 字数 191 浏览 3 评论 0原文

是否有命令行选项可以列出黄瓜测试套件中的所有标签?

例如,我想要类似的东西:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

话少心凉 2024-10-08 19:54:02

对于单个文件:

cucumber -f tag_cloud foo.feature

您还可以找到目录中所有功能的标签:

cucumber -f tag_cloud features/login

甚至是与特定标签共享的功能:

cucumber --format tag_cloud --tags @bvt

为所有这些生成的输出是 wiki 样式表:

| @baseline | @customer | @demographics | @performance |
| 1         | 1         | 1             | 1            |

For a single file:

cucumber -f tag_cloud foo.feature

You could also find the tags of all features in a directory:

cucumber -f tag_cloud features/login

Or even features that are shared with a particular tag:

cucumber --format tag_cloud --tags @bvt

The output generated for all these is a wiki style table:

| @baseline | @customer | @demographics | @performance |
| 1         | 1         | 1             | 1            |
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文