mirror of
https://github.com/status-im/consul.git
synced 2025-01-12 06:44:41 +00:00
6589cbbd0d
* ui: Add the most basic workspace root in /ui * We already have a LICENSE file in the repository root * Change directory path in build scripts ui-v2 -> ui * Make yarn install flags configurable from elsewhere * Minimal workspace root makefile * Call the new docker specific target * Update yarn in the docker build image * Reconfigure the netlify target and move to the higher makefile * Move ui-v2 -> ui/packages/consul-ui * Change repo root to refleect new folder structure * Temporarily don't hoist consul-api-double * Fixup CI configuration * Fixup lint errors * Fixup Netlify target
42 lines
1.1 KiB
Gherkin
42 lines
1.1 KiB
Gherkin
@setupApplicationTest
|
|
@onlyNamespaceable
|
|
Feature: dc / nspaces / index: Nspaces List
|
|
Background:
|
|
Given settings from yaml
|
|
---
|
|
consul:token:
|
|
SecretID: secret
|
|
AccessorID: accessor
|
|
Namespace: default
|
|
---
|
|
And 1 datacenter model with the value "dc-1"
|
|
And 3 nspace models from yaml
|
|
---
|
|
- Name: a-namespace
|
|
Description: a namespace
|
|
- Name: default
|
|
Description: The default namespace
|
|
- Name: z-namespace
|
|
Description: z namespace
|
|
---
|
|
When I visit the nspaces page for yaml
|
|
---
|
|
dc: dc-1
|
|
---
|
|
Then the url should be /dc-1/namespaces
|
|
And the title should be "Namespaces - Consul"
|
|
Scenario:
|
|
Then I see 3 nspace models
|
|
Scenario: Searching the nspaces
|
|
Then I see 3 nspace models
|
|
Then I fill in with yaml
|
|
---
|
|
s: default
|
|
---
|
|
And I see 1 nspace model
|
|
And I see 1 nspace model with the description "The default namespace"
|
|
Scenario: The default namespace can't be deleted
|
|
Then I see 3 nspace models
|
|
And I click nspaces.1.actions
|
|
Then I don't see nspaces.1.delete
|