i have the following issue using Cucumber with cypress. I have the following feature file:
Feature: Validate search.
As a user i want to validate a search using different pages
Scenario: Make a search using google
Given Enter to google
Then I Make a search
And I validate the results
Scenario: Make a search using yahoo
Given I enter to Yahoo
Then I Make a search
And I validate the results
When i execute all the tests pass, however, when i check the Json file generated by cucumber only the informarion of the last Scenario (Make a search using yahoo) is displayed. Does anyone know a way to make the two scenarios appear in the JSON file?
Thanks!