github.com/DerekStrickland/consul@v1.4.5/ui-v2/tests/acceptance/dc/nodes/sessions/list.feature (about) 1 @setupApplicationTest 2 Feature: dc / nodes / sessions / list: List Lock Sessions 3 In order to get information regarding lock sessions 4 As a user 5 I should be able to see a listing of lock sessions with necessary information under the lock sessions tab for a node 6 Scenario: Given 2 session with string TTLs 7 Given 1 datacenter model with the value "dc1" 8 And 1 node model from yaml 9 --- 10 ID: node-0 11 --- 12 And 2 session models from yaml 13 --- 14 - TTL: 30s 15 - TTL: 60m 16 --- 17 When I visit the node page for yaml 18 --- 19 dc: dc1 20 node: node-0 21 --- 22 And I click lockSessions on the tabs 23 Then I see lockSessionsIsSelected on the tabs 24 Then I see TTL on the sessions like yaml 25 --- 26 - 30s 27 - 60m 28 ---