We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
!--
Say there is a .story file
Scenario: some scenario Given some state And some other state When I do something State is changed
Try to comment "And" step using cmd+/. Result will be
Scenario: some scenario Given some state !--And some other state When I do something State is changed
But JBehave requires a space after !--, otherwise it tries to put commented line as a parameter for previous step. In other words, result should be:
Scenario: some scenario Given some state !-- And some other state When I do something State is changed
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Say there is a .story file
Scenario: some scenario Given some state And some other state When I do something State is changed
Try to comment "And" step using cmd+/. Result will be
Scenario: some scenario Given some state !--And some other state When I do something State is changed
But JBehave requires a space after
!--
, otherwise it tries to put commented line as a parameter for previous step. In other words, result should be:Scenario: some scenario Given some state !-- And some other state When I do something State is changed
The text was updated successfully, but these errors were encountered: