d8c14b51a3
* Create ConsulNodeList component * Implement ConsulNodeList and the new Search/Sort to Node List page * Minor styling fix to align the first icons in composite row * Fix-up and add tests for the redesigned Node List page * Add Leader to composite row for Node List page * Add test for node leader
17 lines
497 B
Gherkin
17 lines
497 B
Gherkin
@setupApplicationTest
|
|
Feature: dc / nodes / navigation
|
|
Scenario: Clicking a node in the listing and back again
|
|
Given 1 datacenter model with the value "dc-1"
|
|
And 3 node models
|
|
When I visit the nodes page for yaml
|
|
---
|
|
dc: dc-1
|
|
---
|
|
Then the url should be /dc-1/nodes
|
|
And the title should be "Nodes - Consul"
|
|
Then I see 3 node models
|
|
When I click node on the nodes
|
|
And I click "[data-test-back]"
|
|
Then the url should be /dc-1/nodes
|
|
|