Convert to Scenario Outline removes tags
The cucumber option to "Convert scenario to outline" removes any tags previously attached to the scenario.
@javascript @test
Scenario: Convertion
Given that this scenario has tags "javascript" and "test"
When I convert it to outline
Then it will not loose its tags
After changing to scenario outline will be :
Scenario Outline: Convertion
Given that this scenario has tags "<tag1>" and "<tag2>"
When I convert it to outline
Then it will not loose its tags
Examples:
| tag1 | tag2 |
| javascript | test |
Wich is clearly incorrect.
Regards,
Everton Moreth
Please sign in to leave a comment.
Hello,
I've created an issue and we will fix it soon
--
Best regards
Andrey Vokin
Hello, Everton
We've fixed the problem. You could check it out in the next EAP of RubyMine.
--
Best regards
Andrey Vokin
Thanks for fast reply!
Ill keep posting any problems that I find!
Everton