2022-08-07 14:45:02 -04:00

7 lines
173 B
JavaScript

describe('Home Page', () => {
it('displays all 3 products on the home page', () => {
cy.visit('http://localhost:3001')
cy.get('[data-test="product-tag"]')
})
})