You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Create a page which makes an authenticated request to /api/members to receive a list of members, and present as a list
Scenario: Display a Single User
In order to view a member
As a Manager,
I want to see a members detail
Feature: Happy Path
Given I have authenticated
When I go to the admin panel
And make a request to /api/members/:id
Then I will receive a members data
And I will display it
Feature: Non manager accessing a members data member list
Given I have authenticated as a non manager
When I go to the admin panel
And make a request to /api/members:id
Then I will receive a 401 response
And I will display an error message
In case the server endpoints do not exist use the following data structure for testing purposes
Create a page which makes an authenticated request to /api/members to receive a list of members, and present as a list
Scenario: Display a Single User
In order to view a member
As a Manager,
I want to see a members detail
Feature: Happy Path
Given I have authenticated
When I go to the admin panel
And make a request to /api/members/:id
Then I will receive a members data
And I will display it
Feature: Non manager accessing a members data member list
Given I have authenticated as a non manager
When I go to the admin panel
And make a request to /api/members:id
Then I will receive a 401 response
And I will display an error message
In case the server endpoints do not exist use the following data structure for testing purposes
{
{
"id": 1,
"user": {
"first_name": "Test",
"last_name": "User",
"email": "test@example.com"
}
}
}
The text was updated successfully, but these errors were encountered: