example: ``` Then('I should see the dashboard', ()...
# best-practices
f
example:
Copy code
Then('I should see the dashboard', () => {
  cy.findByText(/build a chatbot/i).should('be.visible');
});
(this would be the only step with assertion)