BDD file with acceptance criteria for viewing the people page in a workspace, describing each step of the feature and user permissions.
Feature: As a Marvel user I want to be able to see and manage company members
Scenario Outline: Page rendering
Given I am <role>
Then I <permission> be able to see people section
Examples:
| role | permission |
| ADMIN | should |
| EDITOR | should |
| INTERNAL_REVIEWER | should not |
Scenario: Tabs rendering
Given I can see people list
Then there should be Members and Guests tabs on the page
Scenario Outline: Active tab
Given I am on <url>
Then <tab> should be active
Examples:
| url | tab |
| /company/people/members | Members |
| /company/people/guests | Guests |