github.com/DerekStrickland/consul@v1.4.5/ui-v2/tests/acceptance/dc/acls/list-order.feature (about) 1 @setupApplicationTest 2 Feature: dc / acls / list-order 3 In order to be able to find ACL tokens easier 4 As a user 5 I want to see the ACL listed alphabetically by Name 6 7 Scenario: I have 10 randomly sorted tokens 8 Given 1 datacenter model with the value "datacenter" 9 And I'm using a legacy token 10 And 10 acl model from yaml 11 --- 12 - Name: zz 13 - Name: 123 14 - Name: aa 15 - Name: 9857 16 - Name: sfgr 17 - Name: foo 18 - Name: bar 19 - Name: xft 20 - Name: z-35y 21 - Name: __acl 22 --- 23 When I visit the acls page for yaml 24 --- 25 dc: datacenter 26 --- 27 Then I see name on the acls like yaml 28 --- 29 - __acl 30 - 123 31 - 9857 32 - aa 33 - bar 34 - foo 35 - sfgr 36 - xft 37 - z-35y 38 - zz 39 ---