mirror of
https://github.com/status-im/consul.git
synced 2025-01-15 00:04:47 +00:00
f9e8b26af6
* Update list items to be linkable to auth-methods show * Add general, namespace, and binding sub-routes * Remove namespace and binding tabs to be done separately * Update auth-method byId endpoint * Style the show auth-method kubernetes type * Finish Kubernetes auth-method type styling * OIDC and JWT auth-method styling * Create consul-auth-method-view component * Add navigation test for auth-methods * Create Certificate component
17 lines
579 B
Gherkin
17 lines
579 B
Gherkin
@setupApplicationTest
|
|
Feature: dc / acls / auth-methods / navigation
|
|
Scenario: Clicking a auth-method in the listing and back again
|
|
Given 1 datacenter model with the value "dc-1"
|
|
And 3 authMethod models
|
|
When I visit the authMethods page for yaml
|
|
---
|
|
dc: dc-1
|
|
---
|
|
Then the url should be /dc-1/acls/auth-methods
|
|
And the title should be "Auth Methods - Consul"
|
|
Then I see 3 authMethod models
|
|
When I click authMethod on the authMethods
|
|
And I click "[data-test-back]"
|
|
Then the url should be /dc-1/acls/auth-methods
|
|
|