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
right now some code like below in our code base
type TestStep struct { ABC string Action func() interface{} } func InitializeScenario(sc *godog.ScenarioContext) { sc.Step(`^I eat (\d+)$`, iEat) step := TestStep{ ABC: `^there are (\d+) godogs$`, // $$GODOG_EXPRESSION$$ Action: func() interface{} { return func(ctx context.Context, available int) (context.Context, error) { return context.WithValue(ctx, godogsCtxKey{}, available), nil } }, } sc.Step(step.ABC, step.Action()) }
for ABC: ^there are (\d+) godogs$``, it can't detect it automatically, so want to have a way to navigate.
ABC:
thanks. it is ok if you don't have time.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
right now some code like below in our code base
for
ABC:
^there are (\d+) godogs$``, it can't detect it automatically, so want to have a way to navigate.thanks. it is ok if you don't have time.
The text was updated successfully, but these errors were encountered: