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
|
|
|