Cucumber 我可以忽略示例数据而不包含在HTML报告中吗

Cucumber 我可以忽略示例数据而不包含在HTML报告中吗,cucumber,cucumberjs,cucumber-java,cucumber-junit,Cucumber,Cucumberjs,Cucumber Java,Cucumber Junit,我将cucumber与java和maven一起使用 我正在使用特征文件中的cucumber示例数据 但要求是,我们不希望在报告中的小黄瓜语句中包含示例数据 例如: Scenario Outline: Looking up the definition of fruits Given the user is on the Wikionary home page When the user looks up the definition of the word <name&g

我将cucumber与java和maven一起使用

我正在使用特征文件中的cucumber示例数据

但要求是,我们不希望在报告中的小黄瓜语句中包含示例数据

例如:

 Scenario Outline: Looking up the definition of fruits
    Given the user is on the Wikionary home page
    When the user looks up the definition of the word <name>
    Then they should see the definition 'An edible fruit produced by the pear tree, similar to an apple but elongated towards the stem.'
    Examples:
    | name |
    | pear | 
我不想在报告中用梨这个词


任何方法都会有帮助

您使用的是哪种报表?默认报表。。。我没有使用预先报告。。cucumber从pretty report使用json@Grasshopper-是否有提前报告的方式。。。请让我知道,以便在默认报告中没有此设施的情况下,我可以查看替代方案不确定是否有满足您需求的报告。尽管你可以扩展这个漂亮的报告,并在cucumberoptions中加入自定义插件。。我现在使用的是可扩展报告。。细节:
When the user looks up the definition of the word **pear**