Reputation: 16575
Since updating my gems, one of my cucumber tests appears to be failing i.e. in the one-line printout of test outcomes it prints a red F:
However the test summary shows that all the tests passed which seems to contradict the red F.
What's a good way to try and unwrap what's going on here and to get some output from that apparently failing test?
Upvotes: 0
Views: 78
Reputation: 4113
Run your tests with cucumber --format=pretty ...
and check out the full output
Upvotes: 3