mirror of
https://github.com/status-im/consul.git
synced 2025-03-03 23:00:44 +00:00
* 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
30 lines
668 B
Gherkin
30 lines
668 B
Gherkin
@setupApplicationTest
|
|
Feature: dc / nodes / empty-ids: Hedge for if nodes come in over the API with no ID
|
|
Scenario: A node list with some missing IDs
|
|
Given 1 datacenter model with the value "dc-1"
|
|
And 5 node models from yaml
|
|
---
|
|
- ID: id-1
|
|
Node: name-1
|
|
- ID: ""
|
|
Node: name-2
|
|
- ID: ""
|
|
Node: name-3
|
|
- ID: ""
|
|
Node: name-4
|
|
- ID: ""
|
|
Node: name-5
|
|
---
|
|
When I visit the nodes page for yaml
|
|
---
|
|
dc: dc-1
|
|
---
|
|
Then the url should be /dc-1/nodes
|
|
Then I see name on the nodes vertically like yaml
|
|
---
|
|
- name-1
|
|
- name-2
|
|
- name-3
|
|
- name-4
|
|
- name-5
|
|
--- |