In your readme, you show that when a test fails, the steps are added to the error message. I see that when I'm in Cypress Studio, but when running the test from the terminal, the numbered steps don't appear. Here's an snippet of my latest attempt:
7) verify topbar elements in API
Verify the tasks drawer:
Timed out retrying after 4000ms
+ expected - actual
-'14px'
+'16px'
AssertionError: Timed out retrying after 4000ms: expected '<button.tapestry-react-reset.tapestry-react-add-ons-1fyaue1>' to have CSS property 'font-size' with the value '16px', but the value was '14px'
at Context.eval (webpack://pco-qa/./cypress/e2e/TOPBAR/topbar.cy.js:153:15)
(Results)
┌────────────────────────────────────────────────────────────────────────────────────────────────┐
│ Tests: 99 │
│ Passing: 92 │
│ Failing: 7 │
│ Pending: 0 │
│ Skipped: 0 │
│ Screenshots: 21 │
│ Video: false │
│ Duration: 4 minutes, 18 seconds │
│ Spec Ran: topbar.cy.js │
└────────────────────────────────────────────────────────────────────────────────────────────────┘
In your readme, you show that when a test fails, the steps are added to the error message. I see that when I'm in Cypress Studio, but when running the test from the terminal, the numbered steps don't appear. Here's an snippet of my latest attempt: