能否在“方案概述”下浏览示例标签? 我正在使用cypress + cucumber + typescript。
PFB我的功能文件代码:
@run1
Scenario Outline: Doing some tests
Given a step
When I do some <input>
Then I should get some <output>
@daily
Examples:
|input |output |
|daily 1 |daily 2 o |
@weekly
Examples:
|input |output |
|week 1 |week 1 o |
|week 2 |week 3 o |
我希望某些命令行命令仅运行@daily标记。目前,我正在运行cypress run -e TAGS = @ run1 ,我正在寻找类似cypress run -e TAGS = @ daily