master
helenanull 4 years ago
parent 807ac83f01
commit 70e8b882ca

@ -90,7 +90,7 @@ describe('Article', () => {
cy.visit('') cy.visit('')
cy.get(home.globalFeedTab).click() cy.get(home.globalFeedTab).click()
// articles are always changing on home page // articles are always changing on home page
// we want to make sure we favourited the correct article // we want to make sure we favorited the correct article
// so we save the first article slug to compare later // so we save the first article slug to compare later
cy.get(home.readMoreLink).should('have.attr', 'href').then((link) => { cy.get(home.readMoreLink).should('have.attr', 'href').then((link) => {
slug = link.split('/')[2] slug = link.split('/')[2]
@ -99,7 +99,7 @@ describe('Article', () => {
.should('have.css', 'background-color', 'rgb(92, 184, 92)') .should('have.css', 'background-color', 'rgb(92, 184, 92)')
cy.wait('@addFavoriteReq') cy.wait('@addFavoriteReq')
// verify article was actually favourited // verify article was actually favorited
cy.request(`${apiUrl}/articles?favorited=${this.username}&limit=5&offset=0`).then((resp) => { cy.request(`${apiUrl}/articles?favorited=${this.username}&limit=5&offset=0`).then((resp) => {
expect(resp.body.articles[0].slug).to.eq(slug) expect(resp.body.articles[0].slug).to.eq(slug)
}) })

@ -2,8 +2,9 @@ Cypress.Commands.add('login', (email = Cypress.env('email'), password = Cypress.
const apiUrl = Cypress.env('apiUrl') const apiUrl = Cypress.env('apiUrl')
cy.request({ cy.request({
// here we can't use just '/api/users/login' because baseUrl is different than API url // here we can't use just '/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() // if they are the same,
// then we can just use url: '/users/login' without prefix, like in visit() command
url: `${apiUrl}/users/login`, url: `${apiUrl}/users/login`,
method: 'POST', method: 'POST',
body: { body: {

Loading…
Cancel
Save