As a user
I want to make a test API call
To verify that I am authenticated with the API
Scenario
Given: a user is registered with the API
And: a user has a JWT access token
When: they send a GET request to /ping
Then: the API sends a success message
Scenario
Given: a user is registered with the API
And: a user's access token has expired
When: they send a GET request to /ping
Then: the API sends a 401 Unauthorized
As a user I want to make a test API call To verify that I am authenticated with the API
Scenario
Given: a user is registered with the API And: a user has a JWT access token When: they send a GET request to /ping Then: the API sends a success message
Scenario
Given: a user is registered with the API And: a user's access token has expired When: they send a GET request to /ping Then: the API sends a 401 Unauthorized
Feature completion checklist