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
From the following line in a scenario:
Given I have $5 in my account
Cucumber-JVM generated the following step definition:
@Given("^I have $(\\d+) in my account$") public void I_have_$_in_my_account(int arg1) { // Express the Regexp above with the code you wish you had }
The regex doesn't match my feature until I manually escape the dollar sign, like so:
@Given("^I have \\$(\\d+) in my account$")
The text was updated successfully, but these errors were encountered:
Have a look at JavaSnippet and JavaSnippetTest if you want to fix this.
JavaSnippet
JavaSnippetTest
Sorry, something went wrong.
Thanks for getting me pointed in the right direction; I've submitted pull request #215.
2ec4f7d
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.
No branches or pull requests
From the following line in a scenario:
Cucumber-JVM generated the following step definition:
The regex doesn't match my feature until I manually escape the dollar sign, like so:
The text was updated successfully, but these errors were encountered: