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
I started using cypress-cucumber-preprocessor recently and I'm really fond of it!
I have a question when executing the scenario's. I would like to see the actual "Given, When, Then" steps in the main output of the tests. It now shows the scenario titles in the output (also in the terminal) and the steps are somewhat hidden inside the actual step behind a log-command. Is this normal behaviour or am I missing something?
Note that I am using the "Given" step in the Background in the example above.
The text was updated successfully, but these errors were encountered:
We don't have control over when cypress clears out things like local storage/sessions/cookies , having all steps treated as a separate scenario (to show nicely in the cypress UI) was causing cypress to reset the state between them, which was a no-go.
Once cypress allows for changing the way it behaves (which is coming, supposedly), we will be able to revert that change
Hi all,
I started using cypress-cucumber-preprocessor recently and I'm really fond of it!
I have a question when executing the scenario's. I would like to see the actual "Given, When, Then" steps in the main output of the tests. It now shows the scenario titles in the output (also in the terminal) and the steps are somewhat hidden inside the actual step behind a log-command. Is this normal behaviour or am I missing something?
Note that I am using the "Given" step in the
Background
in the example above.The text was updated successfully, but these errors were encountered: