25 lines
766 B
Gherkin
25 lines
766 B
Gherkin
Feature: Supplier main board
|
|
|
|
@javascript
|
|
Scenario: the active list should be present and contained in row having its id
|
|
Given there is an active list
|
|
And I am signed in
|
|
And I am on the main board
|
|
Then there is a list record for the active list
|
|
|
|
@javascript
|
|
Scenario: an order is added to the list before visiting the page
|
|
Given there is an active list
|
|
And I am signed in
|
|
And an order is placed
|
|
And I am on the main board
|
|
Then there should be a record of the active order
|
|
|
|
@javascript
|
|
Scenario: an order is added to the list after visiting the page
|
|
Given there is an active list
|
|
And I am signed in
|
|
And I am on the main board
|
|
And an order is placed
|
|
Then there should be a record of the active order
|