diff --git a/integration-tests/api/__tests__/store/cart.js b/integration-tests/api/__tests__/store/cart.js index 5b54e54165..27f3ba78de 100644 --- a/integration-tests/api/__tests__/store/cart.js +++ b/integration-tests/api/__tests__/store/cart.js @@ -458,7 +458,6 @@ describe("/store/carts", () => { }) describe("POST /store/carts/:id/shipping-methods", () => { - let cartWithCustomSo beforeEach(async () => { try { await cartSeeder(dbConnection) @@ -473,18 +472,12 @@ describe("/store/carts", () => { first_name: "lebron", country_code: "us", }, - custom_shipping_options: [ - { - shipping_option_id: "test-option", - price: 5, - }, - ], region_id: "test-region", currency_code: "usd", type: "swap", }) - cartWithCustomSo = await manager.save(_cart) + let cartWithCustomSo = await manager.save(_cart) await manager.insert(CustomShippingOption, { id: "another-cso-test",