d0c4312923
* Create GridCollection for nodes page with styling * Update ListCollection styling * Update TagList styling * Create CompositeRow styling component * Update ConsulServiceList component with styling * Create service health-checks helper * Add InstanceCount to the service model * Add tag-svg to codebase * Create and update tests for service-list page * Upgrade @hashicorp/consul-api-double to 2.14.0
22 lines
740 B
Gherkin
22 lines
740 B
Gherkin
@setupApplicationTest
|
|
Feature: dc / list: List Models
|
|
Scenario: Listing [Model]
|
|
Given 1 datacenter model with the value "dc-1"
|
|
And 3 [Model] models
|
|
When I visit the [Page] page for yaml
|
|
---
|
|
dc: dc-1
|
|
---
|
|
Then the url should be [Url]
|
|
|
|
Then I see 3 [Model] models
|
|
Where:
|
|
-------------------------------------------------
|
|
| Model | Page | Url |
|
|
| node | nodes | /dc-1/nodes |
|
|
| kv | kvs | /dc-1/kv |
|
|
# | acl | acls | /dc-1/acls |
|
|
| token | tokens | /dc-1/acls/tokens |
|
|
| policy | policies | /dc-1/acls/policies |
|
|
-------------------------------------------------
|