|
| 1 | +## Testing notes and ZIP for release 5.6.0 |
| 2 | + |
| 3 | +Zip file for testing: [woocommerce-gutenberg-products-block.zip](https://github.com/woocommerce/woocommerce-gutenberg-products-block/files/6916635/woocommerce-gutenberg-products-block.zip) |
| 4 | + |
| 5 | +## Feature plugin and package inclusion in WooCommerce core |
| 6 | + |
| 7 | +### Fix SKU search in the Store API ([4469](https://github.com/woocommerce/woocommerce-gutenberg-products-block/pull/4469)) |
| 8 | + |
| 9 | +Try some search requests via the Store API, for example: |
| 10 | + |
| 11 | +`https://store.local/wp-json/wc/store/products?search=woo-album` |
| 12 | + |
| 13 | +Ensure matched results match your query. Try searching for both titles and SKUs. |
| 14 | + |
| 15 | +### Fix all review memory leak on block transform ([4428](https://github.com/woocommerce/woocommerce-gutenberg-products-block/pull/4428)) |
| 16 | + |
| 17 | +- Create an empty page and add the All Reviews block. |
| 18 | +- Select the block and in the toolbar select the transform option |
| 19 | +- Hover on one option and hover out before the preview is loaded |
| 20 | +- Check the console is free of error warnings |
| 21 | + |
| 22 | +### Switch arrow unicode characters ([4364](https://github.com/woocommerce/woocommerce-gutenberg-products-block/pull/4364)) |
| 23 | + |
| 24 | +View the pagination rendered on the all products block and confirm the symbol matches the screenshot above. |
| 25 | + |
| 26 | +| Before | After | |
| 27 | +| --- | --- | |
| 28 | +|  |  | |
| 29 | + |
| 30 | +## Feature plugin only |
| 31 | + |
| 32 | +### Add missing class to Cart skeleton title ([4498](https://github.com/woocommerce/woocommerce-gutenberg-products-block/pull/4498)) |
| 33 | + |
| 34 | +1. Load the Cart block and verify the margin under the `Your cart` title doesn't change between the rendered block and the loading skeleton. |
| 35 | + |
| 36 | +| Before | After | |
| 37 | +| --- | --- | |
| 38 | +|  |  | |
| 39 | + |
| 40 | +### Add styles to stop totals items being padded inside panels ([4435](https://github.com/woocommerce/woocommerce-gutenberg-products-block/pull/4435)) |
| 41 | + |
| 42 | +1. Add a subscription product to your cart with WC Subscriptions. |
| 43 | +2. Go to the Cart and Checkout blocks. |
| 44 | +3. Expand the "Daily/Weekly/Monthly recurring total" section at the bottom of the sidebar in both blocks. |
| 45 | +4. Ensure there is no extra padding and that the totals for each recurring section are aligned well. |
| 46 | + |
| 47 | +| Before | After | |
| 48 | +|---|---| |
| 49 | +|  |  | |
| 50 | + |
| 51 | +### Make payment method icons display well even if theme tries to override their height/width ([4427](https://github.com/woocommerce/woocommerce-gutenberg-products-block/pull/4427)) |
| 52 | + |
| 53 | + |
| 54 | +1. Add some custom CSS to your theme, do something that will "accidentally" catch all images in the Cart/Checkout blocks, e.g: |
| 55 | +```css |
| 56 | +.wp-block-woocommerce-cart img, |
| 57 | +.wp-block-woocommerce-checkout img { |
| 58 | + height: auto !important; |
| 59 | + width: 100% !important; |
| 60 | +} |
| 61 | +``` |
| 62 | +2. Go to the Cart and Checkout blocks and ensure that the payment method icons display correctly and are not too large. |
| 63 | +3. Experiment with a few different themes and ensure this works for each one you test. |
| 64 | + |
| 65 | +#### Cart |
| 66 | +| Before | After | |
| 67 | +|---|---| |
| 68 | +|  |  | |
| 69 | + |
| 70 | +#### Checkout |
| 71 | +| Before | After | |
| 72 | +|---|---| |
| 73 | +|  |  | |
0 commit comments