mirror of
https://github.com/status-im/consul.git
synced 2025-01-24 20:51:10 +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
51 lines
1.9 KiB
Gherkin
51 lines
1.9 KiB
Gherkin
@setupApplicationTest
|
|
Feature: dc / list-blocking
|
|
In order to see updates without refreshing the page
|
|
As a user
|
|
I want to see changes if I change consul externally
|
|
Background:
|
|
Given 1 datacenter model with the value "dc-1"
|
|
Scenario: Viewing the listing pages for [Page]
|
|
Given 3 [Model] models
|
|
And a network latency of 100
|
|
When I visit the [Page] page for yaml
|
|
---
|
|
dc: dc-1
|
|
---
|
|
Then the url should be /dc-1/[Url]
|
|
And pause until I see 3 [Model] models
|
|
And an external edit results in 5 [Model] models
|
|
And pause until I see 5 [Model] models
|
|
And an external edit results in 1 [Model] model
|
|
And pause until I see 1 [Model] model
|
|
And an external edit results in 0 [Model] models
|
|
And pause until I see 0 [Model] models
|
|
Where:
|
|
------------------------------------------------
|
|
| Page | Model | Url |
|
|
| nodes | node | nodes |
|
|
| intentions | intention | intentions |
|
|
------------------------------------------------
|
|
Scenario: Viewing detail pages with a listing for [Page]
|
|
Given 3 [Model] models
|
|
And a network latency of 100
|
|
When I visit the [Page] page for yaml
|
|
---
|
|
dc: dc-1
|
|
service: service
|
|
---
|
|
And I click instances on the tabs
|
|
Then the url should be /dc-1/[Url]
|
|
And pause until I see 3 [Model] models
|
|
And an external edit results in 5 [Model] models
|
|
And pause until I see 5 [Model] models
|
|
And an external edit results in 1 [Model] model
|
|
And pause until I see 1 [Model] model
|
|
And an external edit results in 0 [Model] models
|
|
And pause until I see the text "deregistered" in "[data-notification]"
|
|
Where:
|
|
-----------------------------------------------------------------
|
|
| Page | Model | Url |
|
|
| service | instance | services/service/instances |
|
|
-----------------------------------------------------------------
|