2.8 KiB
2.8 KiB
Testing notes and ZIP for release 4.3.0
Zip file for testing: woocommerce-gutenberg-products-block.zip
Feature plugin and package inclusion in WooCommerce core
No changes.
Feature plugin only
- Update input colors and alignment. (3597)
- Open a page with a Checkout Block and observer the checkboxes and radio buttons - they should be clearly visible.
- Go to the page Customizer and change page background to a dark color.
- Again check the checkboxes and radio buttons at the page with the Checkout Block - they should be clearly visible.
- Store API - Fix selected rate in cart shipping rates response. (3680)
- Get a cart response from the API.
- Check shipping packages are returned correctly.
- Create get_item_responses_from_schema abstraction. (3679)
- Get a cart response from the Store API.
- Check response contains correct: items, coupons and shipping information.
- Show itemized fee rows in the cart/checkout blocks. 3678
- Use the following code snippet in woocommerce-gutenberg-products-block.php:
add_action( 'woocommerce_cart_calculate_fees', 'add_fees', 10 ); function add_fees( $cart ) { $cart->add_fee( __( 'Packaging 1', 'woo-gutenberg-products-block' ), 100, true ); $cart->add_fee( __( 'Packaging 2', 'woo-gutenberg-products-block' ), 50, true ); }
- Go to the cart page and see fee rows.
- Go to checkout page and see fee rows.
- Test with and without prices including tax in WC Tax settings.
- Extensibility: Show item data in Cart and Checkout blocks and update the variation data styles. (3665)
Variations:
- Add a variable product to your cart and go to the Cart and Checkout pages.
- Verify variations are displayed with the new design (a list instead of separated by /).
WC Subscriptions:
- Currently, WC Subscriptions doesn't use cart item data yet, but you can checkout this WIP branch to test it: fix/subscription-details-cart-item-data.
- Create a subscription product with free trial and/or sign up fee.
- Add that product to your cart and go to the Cart and Checkout pages.
- Verify the free trial and sign up fee are displayed.
WC Product Add-Ons:
- Create a product with a product add-on.
- Add that product to your cart and go to the Cart and Checkout pages.
- Verify add-on data is displayed.