diff --git a/cypress/e2e/orders/transactionsForOrders.js b/cypress/e2e/orders/transactionsForOrders.js index fd5a773b847..abee0a4402b 100644 --- a/cypress/e2e/orders/transactionsForOrders.js +++ b/cypress/e2e/orders/transactionsForOrders.js @@ -16,7 +16,6 @@ import { createShipping, getDefaultTaxClass, productsUtils, - updateTaxConfigurationForChannel, } from "../../support/api/utils"; import { transactionsOrderUtils } from "../../support/pages/"; @@ -44,7 +43,6 @@ describe("Orders", () => { channelId: channel.id, markAsPaidStrategy: "TRANSACTION_FLOW", }); - updateTaxConfigurationForChannel({ channelSlug: channel.slug }); getDefaultTaxClass(); }) .then(resp => { diff --git a/cypress/e2e/products/productsVariants.js b/cypress/e2e/products/productsVariants.js index 266f7cdb764..2d2c7ad9560 100644 --- a/cypress/e2e/products/productsVariants.js +++ b/cypress/e2e/products/productsVariants.js @@ -13,7 +13,6 @@ import { } from "../../support/api/requests/Product"; import * as productUtils from "../../support/api/utils/products/productsUtils"; import { getProductVariants } from "../../support/api/utils/storeFront/storeFrontProductUtils"; -import { updateTaxConfigurationForChannel } from "../../support/api/utils/taxesUtils"; import { addVariantToDataGrid, enterVariantEditPage, @@ -39,7 +38,6 @@ describe("As an admin I should be able to create variant", () => { cy.clearSessionData().loginUserViaRequest(); - updateTaxConfigurationForChannel({ pricesEnteredWithTax: true }); productUtils .createShippingProductTypeAttributeAndCategory(name, attributeValues) .then(resp => { @@ -53,10 +51,6 @@ describe("As an admin I should be able to create variant", () => { }) .then(resp => { newChannel = resp; - updateTaxConfigurationForChannel({ - channelSlug: newChannel.slug, - pricesEnteredWithTax: true, - }); }); cy.checkIfDataAreNotNull({ defaultChannel,