Cypress - Test Organization and Patterns
You want to use API-first setup to create multiple users before a UI test. Which approach correctly ensures all users are created before visiting the page?
const users = [
{name: 'Anna'},
{name: 'Ben'},
{name: 'Cara'}
]
// Which code snippet is correct?