All my failing cucumber features say (no output) in the Test summary. I followed the instructions here: https://circleci.com/docs/test-metadata/ and it didn’t make a difference. I have found no other documentation or instructions on how to config CircleCI/Cucumber to output useful info in the Test Summary.
I’m pretty sure it used to give me details about why the feature failed, but maybe not.
Any insight on what I need to do to get some ‘output’ from Cucumber feature failures?
@AJMiller when you say names do you mean the Scenario name? as in Scenario: Create a company below.
@company--create
Scenario: Create a company
When a company is created
Then I see the success message
And the company can be found in the search results
@companies-create
Feature: Create a new company
As an existing user
I would like to create a new company
@company--create
Scenario: Create a company
When a company is created
Then I see the success message
And the company can be found in the search results