github.com/sl1pm4t/consul@v1.4.5-0.20190325224627-74c31c540f9c/ui-v2/tests/acceptance/dc/nodes/services/list.feature (about) 1 @setupApplicationTest 2 Feature: dc / nodes / services / list: Node > Services Listing 3 Scenario: Given 1 node 4 Given 1 datacenter model with the value "dc1" 5 And 1 node model from yaml 6 --- 7 ID: node-0 8 Services: 9 - ID: 'service-0-with-id' 10 Port: 65535 11 Service: 'service-0' 12 Tags: ['monitor', 'two', 'three'] 13 Meta: 14 external-source: consul 15 - ID: 'service-1' 16 Port: 0 17 Service: 'service-1' 18 Tags: ['hard drive', 'monitor', 'three'] 19 Meta: 20 external-source: nomad 21 - ID: 'service-2' 22 Port: 1 23 Service: 'service-2' 24 Tags: ['one', 'two', 'three'] 25 Meta: 26 external-source: terraform 27 - ID: 'service-3' 28 Port: 2 29 Service: 'service-3' 30 Tags: [] 31 Meta: 32 external-source: kubernetes 33 - ID: 'service-4' 34 Port: 3 35 Service: 'service-4' 36 Tags: [] 37 Meta: ~ 38 --- 39 When I visit the node page for yaml 40 --- 41 dc: dc1 42 node: node-0 43 --- 44 When I click services on the tabs 45 And I see servicesIsSelected on the tabs 46 And I see externalSource on the services like yaml 47 --- 48 - consul 49 - nomad 50 - terraform 51 - kubernetes 52 - ~ 53 ---