I have the following project structure
bdd_demo
\tests
\features
first.feature
first_steps.go
def.go
abc.go
go.mod
go.sum
with the above project structure when I run godog run tests/features/ it doesn't detect the step definitions already defined in the bdd_demo/tests/first_steps.go
If there is no capability to detect, then there should be a command line flag or option to specify the location of the step definitions root directory.
I have the following project structure
with the above project structure when I run
godog run tests/features/it doesn't detect the step definitions already defined in thebdd_demo/tests/first_steps.goIf there is no capability to detect, then there should be a command line flag or option to specify the location of the step definitions root directory.