From c02df57ae1fb3810e2a68649ba66b0a8ff91e9e2 Mon Sep 17 00:00:00 2001 From: Luigi Date: Tue, 29 Nov 2022 15:41:06 +0100 Subject: [PATCH] try now --- .../specs/shopper/cart-checkout/translations.test.js | 2 +- .../product-query/product-query-with-templates.test.ts | 10 ---------- 2 files changed, 1 insertion(+), 11 deletions(-) diff --git a/tests/e2e/specs/shopper/cart-checkout/translations.test.js b/tests/e2e/specs/shopper/cart-checkout/translations.test.js index 91afd756668..5d27839133e 100644 --- a/tests/e2e/specs/shopper/cart-checkout/translations.test.js +++ b/tests/e2e/specs/shopper/cart-checkout/translations.test.js @@ -10,7 +10,7 @@ if ( process.env.WOOCOMMERCE_BLOCKS_PHASE < 2 ) { test.only( 'Skipping Cart & Checkout tests', () => {} ); } -describe.skip( 'Shopper → Cart & Checkout → Translations', () => { +describe( 'Shopper → Cart & Checkout → Translations', () => { beforeAll( async () => { await merchant.changeLanguage( 'nl_NL' ); } ); diff --git a/tests/e2e/specs/shopper/product-query/product-query-with-templates.test.ts b/tests/e2e/specs/shopper/product-query/product-query-with-templates.test.ts index d36e1509e6c..b94bd0d7577 100644 --- a/tests/e2e/specs/shopper/product-query/product-query-with-templates.test.ts +++ b/tests/e2e/specs/shopper/product-query/product-query-with-templates.test.ts @@ -22,11 +22,6 @@ import { describe( `${ block.name } Block`, () => { useTheme( 'emptytheme' ); - beforeAll( async () => { - await deleteAllTemplates( 'wp_template' ); - await deleteAllTemplates( 'wp_template_part' ); - } ); - afterAll( async () => { await deleteAllTemplates( 'wp_template' ); await deleteAllTemplates( 'wp_template_part' ); @@ -104,11 +99,6 @@ describe( `${ block.name } Block`, () => { } ); } ); - afterAll( async () => { - await deleteAllTemplates( 'wp_template' ); - await deleteAllTemplates( 'wp_template_part' ); - } ); - it( 'should render the same products', async () => { const classicProducts = await getClassicProductsListName(); const products = await getProductQueryProductsListName();