Cypress.Commands.add('register', () => { const apiUrl = Cypress.env('apiUrl') const username = `cy${Math.random().toString().slice(2, 11)}` const email = `${username}@mailinator.com` const password = Cypress.env('password') cy.request({ url: `${apiUrl}/users`, method: 'POST', body: { user: { username: username, email: email, password: password } } }) .then((response) => { expect(response.status).to.eq(200) cy.log('**user created**') cy.log(`**email: ${email}**`) cy.log(`**password: ${password}**`) }) // return email so that we can use that to log in .then(() => email) })