github.com/sl1pm4t/consul@v1.4.5-0.20190325224627-74c31c540f9c/ui-v2/tests/acceptance/dc/nodes/empty-ids.feature (about) 1 @setupApplicationTest 2 Feature: Hedge for if nodes come in over the API with no ID 3 Scenario: A node list with some missing IDs 4 Given 1 datacenter model with the value "dc-1" 5 And 5 node models from yaml 6 --- 7 - ID: id-1 8 Node: name-1 9 - ID: "" 10 Node: name-2 11 - ID: "" 12 Node: name-3 13 - ID: "" 14 Node: name-4 15 - ID: "" 16 Node: name-5 17 --- 18 When I visit the nodes page for yaml 19 --- 20 dc: dc-1 21 --- 22 Then the url should be /dc-1/nodes 23 Then I see name on the nodes like yaml 24 --- 25 - name-1 26 - name-2 27 - name-3 28 - name-4 29 - name-5 30 31 @ignore 32 Scenario: Visually comparing 33 Then the ".unhealthy" element should look like the "/node_modules/@hashicorp/consul-testing-extras/fixtures/dc/nodes/empty-ids.png" image