commerce/site/cypress/integration/header.spec.js
2022-05-09 13:09:22 -04:00

26 lines
754 B
JavaScript

describe('Header', () => {
beforeEach(() => {
cy.visit('/')
})
it('links to the correct pages', () => {
cy.getBySel('logo').click()
cy.location('pathname').should('eq', '/')
cy.getBySel('nav-link-search').click()
cy.location('pathname').should('eq', '/search')
cy.getBySel('nav-link-home-page').click()
cy.location('pathname').should('eq', '/search/frontpage')
})
it.only('the search bar returns the correct search results', () => {
cy.getBySel('search-input').eq(0).type('star{enter}')
cy.get('[data-test="product-tag"]').within(() => {
cy.get('[data-test="product-name"]').should('contain', 'Star Wars')
cy.get('[data-test="product-price"]').should('contain', '$25.00 USD')
})
})
})