Cypress - Test Organization and Patterns
Given this App Action:
What will happen if you call
const addTask = (task) => { cy.get('#task-input').type(task); cy.get('#submit-btn').click(); }What will happen if you call
addTask('Email') twice consecutively in a test?