Update testing notes

This commit is contained in:
Alexandre Lara 2023-04-25 09:51:04 -03:00
parent 3349140955
commit 54059baf00
1 changed files with 5 additions and 5 deletions

View File

@ -7,7 +7,7 @@ Zip file for testing: [woocommerce-gutenberg-products-block.zip](https://github.
### [Patterns]: Add new Featured Products 2 columns pattern ([#9072](https://github.com/woocommerce/woocommerce-blocks/pull/9072))
1. Create a new page or post
2. Make sure the `WooCommerce Featured products 2 columns` pattern appears under the WooCommerce category dropdown.
2. Make sure the `Featured products 2 columns` pattern appears under the WooCommerce category dropdown.
3. Insert in and make sure it shows as expected on the design.
### [Patterns] Add new Testimonials: 3 columns pattern ([#9159](https://github.com/woocommerce/woocommerce-blocks/pull/9159))
@ -191,12 +191,12 @@ City : 's-Hertogenbosch
### Use consistent and semantically correct HTML elements in the Cart and Checkout blocks ([#9065](https://github.com/woocommerce/woocommerce-blocks/pull/9065))
1. Create a test page and add the Cart block.
2. Within the post editor, verify that the `CART TOTALS` element is using a `<span>` instead of an `<h2>`.
2. Within the post editor, verify that the `CART TOTALS` element, with the CSS class `.wc-block-cart__totals-title`, is using a `<span>` instead of an `<h2>`.
3. Create another test page and add the Checkout block.
4. Within the post editor, verify that the `Order summary` element is using a `<div>` instead of an `<h2>`.
4. Within the post editor, verify that the `Order summary` element, with the CSS class `.wc-block-components-order-summary`, is using a `<div>` instead of an `<h2>`.
5. Go to the frontend and add a product to the cart.
6. On the page with the Cart block, verify that the `CART TOTALS` element is using a `<span>` instead of an `<h2>`.
7. On the page with the Checkout block, verify that the `Order summary` element is using a `<div>` instead of an `<h2>`.
6. On the page with the Cart block, verify that the `CART TOTALS` element, with the CSS class `.wc-block-cart__totals-title`, is using a `<span>` instead of an `<h2>`.
7. On the page with the Checkout block, verify that the `Order summary` element, with the CSS class `.wc-block-components-order-summary`, is using a `<div>` instead of an `<h2>`.
### Mini Cart: Remove excessive margin under cart items ([#9051](https://github.com/woocommerce/woocommerce-blocks/pull/9051))