mirror of
https://github.com/vercel/commerce.git
synced 2025-05-13 13:17:51 +00:00
10 lines
174 B
JavaScript
10 lines
174 B
JavaScript
/// <reference types="cypress" />
|
|
|
|
|
|
describe('Home Page', () => {
|
|
it("Displays all 2 products at home page", () => {
|
|
cy.visit("http://localhost:3000")
|
|
})
|
|
})
|
|
|