You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
583 B
JavaScript

Cypress.Commands.add('register', () => {
const username = `cy${Math.random().toString().slice(2, 11)}`
const email = `${username}@mailinator.com`
cy.request({
url: 'https://conduit.productionready.io/api/users',
method: 'POST',
body: {
user: {
username: username,
email: email,
password: 'Testtest1'
}
}
})
.then((response) => {
expect(response.status).to.eq(200)
Cypress.env('email', email)
return email
})
})