commerce/cypress/e2e/header.cy.ts
2023-09-06 14:07:07 +07:00

22 lines
598 B
TypeScript

describe('Header', () => {
beforeEach(() => {
cy.visit('/');
});
it('links to the correct pages', () => {
cy.getBySel('logo').click();
cy.location('pathname').should('eq', '/');
});
it.only('the search bar returns the correct search results', () => {
cy.getBySel('search-input').type('liquid{enter}');
cy.getBySel('product-label')
.should('have.length', 1)
.within(() => {
cy.getBySel('product-name').should('contain', 'The Collection Snowboard: Liquid');
cy.getBySel('product-price').should('contain', '₫750VND');
});
});
});