github.com/DerekStrickland/consul@v1.4.5/ui-v2/tests/acceptance/startup.feature (about) 1 @setupApplicationTest 2 Feature: startup 3 In order to give users an indication as early as possible that they are at the right place 4 As a user 5 I should be able to see a startup logo 6 Scenario: When loading the index.html file into a browser 7 Given 1 datacenter model with the value "dc-1" 8 Then the url should be '' 9 Then "html" has the "ember-loading" class 10 When I visit the services page for yaml 11 --- 12 dc: dc-1 13 --- 14 Then the url should be /dc-1/services 15 Then "html" doesn't have the "ember-loading" class 16 17