mirror of
https://github.com/status-im/consul.git
synced 2025-01-20 02:29:09 +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
22 lines
757 B
Gherkin
22 lines
757 B
Gherkin
@setupApplicationTest
|
|
Feature: dc / services / show-with-slashes: Show Service that has slashes in its name
|
|
In order to view services that have slashes in their name
|
|
As a user
|
|
I want to view the service in the service listing and click on it to see the service detail
|
|
Scenario: Given a service with slashes in its name
|
|
Given 1 datacenter model with the value "dc1"
|
|
And 1 node model
|
|
And 1 service model from yaml
|
|
---
|
|
- Name: hashicorp/service/service-0
|
|
---
|
|
When I visit the services page for yaml
|
|
---
|
|
dc: dc1
|
|
---
|
|
Then the url should be /dc1/services
|
|
Then I see 1 service model
|
|
And I click service on the services
|
|
Then the url should be /dc1/services/hashicorp%2Fservice%2Fservice-0/topology
|
|
|