You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 16, 2018. It is now read-only.
I am trying to add the ability for jumping to a Cucumber step from the definition, but I have a question. Is it possible to use capture groups in the word: definition of config.js.
Example:
I am here:
Then I go to this awesome step
And I want to jump to:
Then(^I go to this awesome step$) do
I tried setting the word to:
word: /[0-9a-zA-Z_ ]+/
Unfortunately that includes the term "Then", which shouldn't be there. So I attempted to do:
word: /(Given|When|Then|And)\(.*\)/
But no such luck.
Thoughts on proceeding?
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I am trying to add the ability for jumping to a Cucumber step from the definition, but I have a question. Is it possible to use capture groups in the
word:
definition ofconfig.js
.Example:
I am here:
And I want to jump to:
I tried setting the word to:
Unfortunately that includes the term "Then", which shouldn't be there. So I attempted to do:
But no such luck.
Thoughts on proceeding?
The text was updated successfully, but these errors were encountered: