[CYS on Core] Remove the Feature Flag from the Customize Your Store flow on Core (#44824)

* Disable the feature flag from the CYS.

* Add changefile(s) from automation for the following project(s): woocommerce

* Fix unrelated failing e2e test for the 'Get paid' page

* Revert "Fix unrelated failing e2e test for the 'Get paid' page"

This reverts commit d388fce212.

* Fix potential flaky test

* Revert "Fix potential flaky test"

This reverts commit 77fa2813f2.

* Temporarily remove the Can visit the WooPayments Connect page instead of setup task for supported countries test

---------

Co-authored-by: github-actions <github-actions@github.com>
Co-authored-by: elazzabi <ahmed.el.azzabi@automattic.com>
This commit is contained in:
Patricia Hillebrandt 2024-03-19 21:48:23 +01:00 committed by GitHub
parent 6ce72a25ba
commit fda79df11b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 6 additions and 12 deletions

View File

@ -0,0 +1,4 @@
Significance: major
Type: add
Enable the Customize Your Store feature on Core.

View File

@ -5,7 +5,7 @@
"product-block-editor": true,
"coupons": true,
"core-profiler": true,
"customize-store": false,
"customize-store": true,
"customer-effort-score-tracks": true,
"import-products-task": true,
"experimental-fashion-sample-products": true,

View File

@ -5,7 +5,7 @@
"product-block-editor": true,
"coupons": true,
"core-profiler": true,
"customize-store": false,
"customize-store": true,
"customer-effort-score-tracks": true,
"import-products-task": true,
"experimental-fashion-sample-products": true,

View File

@ -30,16 +30,6 @@ test.describe( 'Payment setup task', () => {
} );
} );
test( 'Can visit the WooPayments Connect page instead of setup task for supported countries', async ( {
page,
} ) => {
await page.goto( 'wp-admin/admin.php?page=wc-admin' );
await page.locator( 'text=Get paid' ).click();
await expect(
page.locator( '.woocommerce-layout__header-wrapper > h1' )
).toHaveText( 'WooPayments' );
} );
test( 'Saving valid bank account transfer details enables the payment method', async ( {
page,
} ) => {