mirror of https://github.com/hashicorp/consul
24 lines
803 B
Gherkin
24 lines
803 B
Gherkin
|
@setupApplicationTest
|
||
|
@notNamespaceable
|
||
|
|
||
|
Feature: settings / show: Show Settings Page
|
||
|
Scenario: I see the Blocking queries
|
||
|
Given 1 datacenter model with the value "datacenter"
|
||
|
When I visit the settings page
|
||
|
Then the url should be /setting
|
||
|
And the title should be "Settings - Consul"
|
||
|
And I see blockingQueries
|
||
|
Scenario: Setting CONSUL_UI_DISABLE_REALTIME hides Blocking Queries
|
||
|
Given 1 datacenter model with the value "datacenter"
|
||
|
And settings from yaml
|
||
|
---
|
||
|
CONSUL_UI_DISABLE_REALTIME: 1
|
||
|
---
|
||
|
Then I have settings like yaml
|
||
|
---
|
||
|
CONSUL_UI_DISABLE_REALTIME: "1"
|
||
|
---
|
||
|
When I visit the settings page
|
||
|
Then the url should be /setting
|
||
|
And the title should be "Settings - Consul"
|
||
|
And I don't see blockingQueries
|