master
helenanull 4 years ago
parent 807ac83f01
commit 70e8b882ca

@ -90,7 +90,7 @@ describe('Article', () => {
cy.visit('')
cy.get(home.globalFeedTab).click()
// 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
cy.get(home.readMoreLink).should('have.attr', 'href').then((link) => {
slug = link.split('/')[2]
@ -99,7 +99,7 @@ describe('Article', () => {
.should('have.css', 'background-color', 'rgb(92, 184, 92)')
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) => {
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')
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()
// 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: '/users/login' without prefix, like in visit() command
url: `${apiUrl}/users/login`,
method: 'POST',
body: {

Loading…
Cancel
Save