# SSC - Make a field in table store list with status "Approve" / "Rejected"
## Test Scenarios
#### Test Scenario 1
```gherkin
Scenario: Show green tick icon as Approved Store Status
Given Store A Status is 'Approved'
And the user is on SSC
When the user click 'Store List' section
Then redirects to Store List Page
And show Store A Status with green tick icon
```
#### Test Scenario 2
```gherkin
Scenario: Show red x icon as Rejected Store Status
Given Store A Status is 'Rejected'
And the user is on SSC
When the user click 'Store List' section
Then redirects to Store List Page
And show Store A Status with red x icon
```
#### Test Scenario 3
```gherkin
Scenario: Show grey tick icon as Unverified Store Status
Given Store A Status is unverified
And the user is on SSC
When the user click 'Store List' section
Then redirects to Store List Page
And show Store A Status with grey tick icon
```
#### Test Scenario 4
```gherkin
Scenario: Successfully approve a store status
Given Store A Status is unverified
And the user is on SSC Store List
When the user clicks 'Action' three dots icon
And the user clicks 'Approve'
Then change Store A Status to Approved
And show Store A Status with green tick icon
```
#### Test Scenario 5
```gherkin
Scenario: Successfully reject a store status
Given Store A Status is unverified
And the user is on SSC Store List
When the user clicks 'Action' three dots icon
And the user clicks 'Reject'
Then change Store A Status to Rejected
And show Store A Status with red x icon
```
###### tags: `Sprint 16` `Ecommerce` `SSC` `Sinbad`