mirror of
https://github.com/vercel/commerce.git
synced 2025-04-28 05:47:50 +00:00
11 lines
415 B
JavaScript
11 lines
415 B
JavaScript
/// <reference types="cypress" />
|
|
/// <reference types="../support" />
|
|
|
|
describe("Testing for header elements", () => {
|
|
it("return the right product when searched", () => {
|
|
cy.visit("http://localhost:3000");
|
|
cy.getBySel("search-bar-input").type("camisa{enter}");
|
|
cy.getBySel("product-link").first().click();
|
|
cy.location("pathname").should("eq", "/product/otra-camisa");
|
|
})
|
|
}) |