[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 commitd388fce212
. * Fix potential flaky test * Revert "Fix potential flaky test" This reverts commit77fa2813f2
. * 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:
parent
6ce72a25ba
commit
fda79df11b
|
@ -0,0 +1,4 @@
|
|||
Significance: major
|
||||
Type: add
|
||||
|
||||
Enable the Customize Your Store feature on Core.
|
|
@ -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,
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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,
|
||||
} ) => {
|
||||
|
|
Loading…
Reference in New Issue