Description
🤔 What's the problem you're trying to solve?
Taking the example below from the codebase:
When the feature file is executed, the output in the below looks like this:
The naming convention following the pattern of #Example1.1, 1.2, etc leads to a lack context and the issue is even more problematic in bigger codebases, with lots of tests that utilise examples heavily.
✨ What's your proposed solution?
Ideally, I'd like to be able to modify the scenario outline to look like this:
Scenario Outline: Many additions - first digit <a> second digit <b> expected result <c>
so that the test executions in intellij come out with a meaningful description.
⛏ Have you considered any alternatives or workarounds?
Based on this issue for cucumber js, it's been suggested it should already possible but I couldn't get it working with the examples in this codebase as illustrated by the screenshots.
📚 Any additional context?
No response