Skip to content

Commit

Permalink
build: testing if skipping in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
field123 committed Nov 18, 2023
1 parent 9663741 commit da7885c
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 14 deletions.
6 changes: 0 additions & 6 deletions examples/simple/e2e/checkout-flow.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,6 @@ import { gatewayIsEnabled } from "./util/gateway-is-enabled";
import { skipIfCIEnvironment } from "./util/skip-ci-env";

test.describe("Checkout flow", async () => {
test.beforeEach(async () => {
skipIfCIEnvironment();
await skipIfMissingCatalog();
await gatewayIsEnabled();
});

test("should perform product checkout", async ({ page }) => {
const productDetailPage = createD2CProductDetailPage(page, client);
const cartPage = createD2CCartPage(page);
Expand Down
4 changes: 0 additions & 4 deletions examples/simple/e2e/home-page.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,6 @@ import { createD2CHomePage } from "./models/d2c-home-page";
import { skipIfMissingCatalog } from "./util/missing-published-catalog";

test.describe("Home Page", async () => {
test.beforeEach(async () => {
// await skipIfMissingCatalog();
});

test("should load home page", async ({ page }) => {
const d2cHomePage = createD2CHomePage(page);
await d2cHomePage.goto();
Expand Down
4 changes: 0 additions & 4 deletions examples/simple/e2e/product-details-page.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,6 @@ import { client } from "./util/epcc-client";
import { skipIfMissingCatalog } from "./util/missing-published-catalog";

test.describe("Product Details Page", async () => {
test.beforeEach(async () => {
await skipIfMissingCatalog();
});

test("should add a simple product to cart", async ({ page }) => {
const productDetailPage = createD2CProductDetailPage(page, client);

Expand Down

0 comments on commit da7885c

Please sign in to comment.