8000 Fix/flaky test 56629 by ralucaStan · Pull Request #58080 · woocommerce/woocommerce · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Fix/flaky test 56629 #58080

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 27 commits into from
May 26, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
b0e141f
Update address JS utils to use the addressFieldsForShippingRates setting
ralucaStan May 15, 2025
d178f3e
Fix typo
ralucaStan May 15, 2025
d86dbe8
add changelog
ralucaStan May 15, 2025
c15fb21
Add the addressFieldsForShippingRates setting to cart
ralucaStan May 16, 2025
b194993
Remove the woocommerce_address_fields_for_shipping_rates filter
ralucaStan May 16, 2025
f1aee5e
Merge branch 'trunk' into update/is-address-complete
ralucaStan May 16, 2025
efb45b0
Wait for order summary to show the updated pickup selection before pl…
ralucaStan May 16, 2025
c74126e
Fix label
ralucaStan May 16, 2025
d04b95e
add changelog
ralucaStan May 16, 2025
7a5cdfe
Update address JS utils to use the addressFieldsForShippingRates setting
ralucaStan May 15, 2025
6bca9cb
Fix typo
ralucaStan May 15, 2025
696ca85
add changelog
ralucaStan May 15, 2025
9330d8c
Add the addressFieldsForShippingRates setting to cart
ralucaStan May 16, 2025
ed4ac88
Remove the woocommerce_address_fields_for_shipping_rates filter
ralucaStan May 16, 2025
a364383
Wait for order summary to show the updated pickup selection before pl…
ralucaStan May 16, 2025
7f856ac
Fix label
ralucaStan May 16, 2025
c10267a
add changelog
ralucaStan May 16, 2025
6508713
Revert "Update address JS utils to use the addressFieldsForShippingRa…
ralucaStan May 26, 2025
57fa1c4
Revert "Add the addressFieldsForShippingRates setting to cart"
ralucaStan May 26, 2025
65aac0f
Revert "Remove the woocommerce_address_fields_for_shipping_rates filter"
ralucaStan May 26, 2025
a847057
Merge branch 'fix/flaky-test-56629' of github.com:woocommerce/woocomm…
ralucaStan May 26, 2025
047a6d8
Revert "Remove the woocommerce_address_fields_for_shipping_rates filter"
ralucaStan May 26, 2025
d06521d
Revert "Add the addressFieldsForShippingRates setting to cart"
ralucaStan May 26, 2025
9388e2c
Revert "Update address JS utils to use the addressFieldsForShippingRa…
ralucaStan May 26, 2025
0008949
Revert "add changelog"
ralucaStan May 26, 2025
a7e8e99
Revert "Fix typo"
ralucaStan May 26, 2025
5d5252c
Merge branch 'trunk' into fix/flaky-test-56629
ralucaStan May 26, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions plugins/woocommerce/changelog/fix-flaky-test-56629
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Significance: patch
Type: dev

Fix flacky test
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,8 @@ test.describe( 'Shopper → Local pickup', () => {
await page
.getByRole( 'radio', { name: 'Pickup', exact: true } )
.click();
await expect( page.getByText( 'Pickup (Testing)' ) ).toBeVisible();

await checkoutPageObject.placeOrder();

await expect(
Expand Down
Loading
0