diff --git a/cypress/integration/article.spec.js b/cypress/integration/article.spec.js index 2cd322e..0279b7b 100644 --- a/cypress/integration/article.spec.js +++ b/cypress/integration/article.spec.js @@ -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) }) diff --git a/cypress/support/login.cmd.js b/cypress/support/login.cmd.js index 6c8519e..1ecd134 100644 --- a/cypress/support/login.cmd.js +++ b/cypress/support/login.cmd.js @@ -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: {