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
I installed this in vs code for my behave Project. All the step definitions are showing as not completed(yellow lines) below is my setting
{ "cucumberautocomplete.steps": [ "features/steps/.py" ], "cucumberautocomplete.syncfeatures": "features/feature_files/**/.feature", "cucumberautocomplete.strictGherkinCompletion": true, "cucumberautocomplete.strictGherkinValidation": true, "cucumberautocomplete.smartSnippets": true, "cucumberautocomplete.stepsInvariants": true }
The text was updated successfully, but these errors were encountered:
used asterisks().py and asterisks().feature somehow it is not populating
Sorry, something went wrong.
We use this extension with python and it works great as long as you do not put gherkin examples in docstrings (Ref #506).
This is our settings:
"cucumberautocomplete.steps": [ "./features/steps/*.py" ], "cucumberautocomplete.strictGherkinCompletion": false, "cucumberautocomplete.strictGherkinValidation": false, "cucumberautocomplete.smartSnippets": true, "cucumberautocomplete.stepsInvariants": true
No branches or pull requests
I installed this in vs code for my behave Project. All the step definitions are showing as not completed(yellow lines)
below is my setting
{
"cucumberautocomplete.steps": [
"features/steps/.py"
],
"cucumberautocomplete.syncfeatures": "features/feature_files/**/.feature",
"cucumberautocomplete.strictGherkinCompletion": true,
"cucumberautocomplete.strictGherkinValidation": true,
"cucumberautocomplete.smartSnippets": true,
"cucumberautocomplete.stepsInvariants": true
}
The text was updated successfully, but these errors were encountered: