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
With Cucumber Expressions in SpecFlow, it is not needed to use verbatim string literals for the step def expressions. So instead of [When(@"I do something")], you would write [When("I do something")] (note the missing @).
The current implementation only recognizes step definitions with verbatim string here, therefore the ones with normal string are not recognized and therefore the related steps are reported as undefined.
The text was updated successfully, but these errors were encountered:
With Cucumber Expressions in SpecFlow, it is not needed to use verbatim string literals for the step def expressions. So instead of
[When(@"I do something")]
, you would write[When("I do something")]
(note the missing@
).The current implementation only recognizes step definitions with verbatim string here, therefore the ones with normal string are not recognized and therefore the related steps are reported as undefined.
The text was updated successfully, but these errors were encountered: