mirror of
https://github.com/Sylius/Sylius.git
synced 2026-07-14 09:02:12 +00:00
17 lines
635 B
Gherkin
17 lines
635 B
Gherkin
@managing_taxons
|
|
Feature: Reordering taxons
|
|
In order to see all ordered taxons in the store
|
|
As an Administrator
|
|
I want to browse ordered taxons
|
|
|
|
Background:
|
|
Given the store classifies its products as "T-Shirts", "Watches", "Belts" and "Wallets"
|
|
And I am logged in as an administrator
|
|
|
|
@ui @javascript
|
|
Scenario: Changing order of the taxon
|
|
When I want to see all taxons in store
|
|
And I move up "Watches" taxon
|
|
Then I should see 4 taxons on the list
|
|
And I should see the taxon named "T-Shirts" in the list
|
|
But the first taxon on the list should be "Watches"
|