commerce/cypress/e2e/home.cy.ts
2024-08-21 11:41:17 +02:00

6 lines
116 B
TypeScript

describe('Home Page', () => {
it('displays all 3 products on the home page', () => {
cy.visit('/');
});
});