我们可以在“方案概述”下浏览示例标签吗?

时间:2020-01-23 11:27:17

标签: cucumber cypress gherkin

能否在“方案概述”下浏览示例标签? 我正在使用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

0 个答案:

没有答案