25 lines
1007 B
Gherkin
25 lines
1007 B
Gherkin
@payment_viewing
|
|
Feature: Login in to admin panel
|
|
and going to payments tab
|
|
I should not see primary order payments
|
|
|
|
Background:
|
|
Given the store has currency "EUR"
|
|
And the store has currency "GBP"
|
|
And the store operates on a channel named "Web-EU" in "EUR" currency and with hostname "web-eu"
|
|
And that channel allows to shop using "EUR" and "GBP" currencies
|
|
And the store has country "Ireland"
|
|
And the store has a product "Leprechaun's Gold" priced at "€10.00" in "Web-EU" channel
|
|
And the store has a zone "EU"
|
|
And the store has customer "example@user.com"
|
|
And the store has "UPS" shipping method with "$20.00" fee per unit for "Web-EU" channel
|
|
And the store has also a payment method "Bank transfer" with a code "transfer"
|
|
|
|
|
|
@ui
|
|
Scenario: Browsing payments tab on panel admin
|
|
Given I am logged in as an administrator
|
|
And store has primary and secondary order
|
|
And I am on "/admin/payments/"
|
|
Then I should see 1 payment for secondary order
|