-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
#9862 Number of items in order summary page #9898
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,22 @@ | ||
| @paying_for_order | ||
| Feature: Having good number of items in changing payment method page | ||
| In order to verify that I am changing the payment method of correct order | ||
| As a Customer | ||
| I want to see correct details about my order on changing the payment method page | ||
|
|
||
| Background: | ||
| Given the store operates on a single channel in "United States" | ||
| And there is a user "[email protected]" identified by "password123" | ||
| And the store allows paying "Offline" | ||
| And the store allows paying "Cash on delivery" | ||
| And the store has a product "PHP T-Shirt" priced at "$19.99" | ||
| And the store ships everywhere for free | ||
| And I am logged in as "[email protected]" | ||
|
|
||
| @ui | ||
| Scenario: Seeing correct quantity on payment retry page | ||
| Given I have added 2 products "PHP T-Shirt" to the cart | ||
| And I have proceeded selecting "Cash on delivery" payment method | ||
| And I have confirmed order | ||
| When I go to order details | ||
| Then I should see 2 as number of items |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -13,7 +13,7 @@ | |
| {{ money.convertAndFormat(order.total) }} | ||
| </div> | ||
| <div class="item"> | ||
| {{ order.items|length }} {{ 'sylius.ui.items'|trans|lower }} | ||
| {{ order.totalQuantity }} {{ 'sylius.ui.items'|trans|lower }} | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm wondering, maybe we should change the
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think @Zales0123 let me know if it is ok for you
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 👍 |
||
| </div> | ||
| </div> | ||
| </div> | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.