Error: Step implementation missing for: I open Google page
See original GitHub issueI have followed the guide in the README.md word for word but I keep getting this error. My feature file is at cypress/integration/google.feature
and my step file is at cypress/support/step_definitions/google.js
Would appreciate if anyone could help.
Thanks
Issue Analytics
- State:
- Created 4 years ago
- Comments:12 (1 by maintainers)
Top Results From Across the Web
Error: Step implementation missing for: [step_definition ...
Finally, I have identified the solution.The issue is with the folder structure and naming conventions. Below are the two main rules we need ......
Read more >Error: Step implementation missing for: I open Google page ...
My feature file is at cypress/integration/google.feature and my step ... Error: Step implementation missing for: I open Google page #208.
Read more >Error: Step implementation missing for: [step_definition ...
I tried to do a simple test to try how cucumber works with cypress, but I didn't manage to solve the problem described...
Read more >cypress-io/cypress - Gitter
Step implementation missing for: I open Google page node_modules/cypress-cucumber-preprocessor/lib/resolveStepDefinition.js:223:1.
Read more >Error: Step Implementation Missing For: [Step_Definition] ...
Error : Step implementation missing for: I open Google page #208. Closed. Nodeocrat opened this issue on Aug 20, 2019 · 12 comments....
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Ah it’s ok, I managed to guess around and fix it. I thought there was more required after I read the cosmiconfig docs. Maybe some further clarifications would be nice for the README, I think the sentence “First please use cosmiconfig to create a configuration for the plugin, for example put this section:” is misleading as it implies you need to install cosmiconfig, head over to the cosmiconfig docs and learn how to use it first. Maybe omitting all mention of cosmiconfig would be better as it’s not relevant for most users, you could just mention it in an implementation section instead for those who’re interested.
ok so I understand what the problem is now… it’s because my cypress tests are in a
test
folder so I need to change thestep_definitions
option, but I am confused with how to use cosmiconfig to do this, is there an example anywhere I can see of where it has been used withcypress-cucumber-preprocessor
to change the config options?