Skip to content

Commit

Permalink
fix: remove mobile test check for menu
Browse files Browse the repository at this point in the history
  • Loading branch information
field123 committed Feb 16, 2024
1 parent e42089a commit 1af303a
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 20 deletions.
5 changes: 0 additions & 5 deletions examples/algolia/e2e/product-list-page.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,6 @@ test("should be able to use quick view to view full product details", async ({
(cookie) => cookie.name === "_store_ep_cart",
)?.value;

/* Mobile - open hamburger menu */
if (isMobile) {
await page.getByRole("button", { name: "Menu" }).click();
}

const nav = await buildSiteNavigation(client);

const firstNavItem = nav[0];
Expand Down
5 changes: 0 additions & 5 deletions examples/payments/e2e/product-list-page.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,6 @@ test("should be able to use quick view to view full product details", async ({
(cookie) => cookie.name === "_store_ep_cart",
)?.value;

/* Mobile - open hamburger menu */
if (isMobile) {
await page.getByRole("button", { name: "Menu" }).click();
}

const nav = await buildSiteNavigation(client);

const firstNavItem = nav[0];
Expand Down
5 changes: 0 additions & 5 deletions examples/simple/e2e/product-list-page.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,6 @@ test("should be able to use quick view to view full product details", async ({
(cookie) => cookie.name === "_store_ep_cart",
)?.value;

/* Mobile - open hamburger menu */
if (isMobile) {
await page.getByRole("button", { name: "Menu" }).click();
}

const nav = await buildSiteNavigation(client);

const firstNavItem = nav[0];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,6 @@ test("should be able to use quick view to view full product details", async ({
(cookie) => cookie.name === "_store_ep_cart",
)?.value;

/* Mobile - open hamburger menu */
if (isMobile) {
await page.getByRole("button", { name: "Menu" }).click();
}

const nav = await buildSiteNavigation(client);

const firstNavItem = nav[0];
Expand Down

0 comments on commit 1af303a

Please sign in to comment.