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.
20 lines
692 B
JavaScript
20 lines
692 B
JavaScript
Cypress.Commands.add('login', (email = Cypress.env('email'), password = Cypress.env('password')) => {
|
|
const apiUrl = Cypress.env('apiUrl')
|
|
|
|
cy.request({
|
|
// here we can't use just '/api/users/login' because baseUrl is different than API url
|
|
// if they are the same, then we can just use url: '/api/users/login' like in visit()
|
|
url: `${apiUrl}/users/login`,
|
|
method: 'POST',
|
|
body: {
|
|
user: {
|
|
email: email,
|
|
password: password
|
|
}
|
|
}
|
|
}).then((response) => {
|
|
expect(response.status).to.eq(200)
|
|
window.localStorage.setItem('jwtToken', response.body.user.token)
|
|
})
|
|
})
|