Cypress - Test Organization and Patterns
You need to create multiple test users via API before running UI tests in Cypress. Which code snippet correctly ensures all users are created before visiting the UI page?
const users = [{name: 'Tom'}, {name: 'Jerry'}];
// Which approach is correct?