I'm using Karate DSL's parallel runner to run my API tests. It is using cucumber reporting library to generate test results.I have question about 'Tags' section of cucumber report.
Here is my sample feature file.
@tag1 @tag2
Feature: Test
Background:
Given url testUrl
Scenario Outline: Test scenario
Given path 'test'
And param parameter = <parameter>
When method GET
Then status 200
Examples:
| parameter |
| 123 |
| 456 |
Issue: If I run test with only tag @tag1, I'm expecting to see only @tag1 in 'Tags' section of the report, but It's displaying rows for both @tag1 and @tag2.
Questions: 1. Is it expected behavior in cucumber report ? 2. Is there a way to customize report to only include specified tag ?