commerce/cypress/e2e/home.cy.js
2025-02-10 15:43:17 -04:00

10 lines
174 B
JavaScript

/// <reference types="cypress" />
describe('Home Page', () => {
it("Displays all 2 products at home page", () => {
cy.visit("http://localhost:3000")
})
})