open-consul/ui-v2/tests/acceptance/settings/update.feature

20 lines
508 B
Gherkin
Raw Normal View History

@setupApplicationTest
Feature: settings / update: Update Settings
In order to authenticate with an ACL token
As a user
I need to be able to add my token via the UI
Scenario: I click Save without actually typing anything
Given 1 datacenter model with the value "datacenter"
When I visit the settings page
Then the url should be /settings
Then I have settings like yaml
---
token: ~
---
And I submit
Then I have settings like yaml
---
token: ''
---