mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-02-04 08:13:38 +00:00
19 lines
603 B
Gherkin
19 lines
603 B
Gherkin
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
@system @essential @service_discovery
|
|
Feature: Service Discovery
|
|
Configure service discovery.
|
|
|
|
Background:
|
|
Given I'm a logged in user
|
|
|
|
Scenario: Disable service discovery application
|
|
Given the service discovery application is enabled
|
|
When I disable the service discovery application
|
|
Then the service discovery service should not be running
|
|
|
|
Scenario: Enable service discovery application
|
|
Given the service discovery application is disabled
|
|
When I enable the service discovery application
|
|
Then the service discovery service should be running
|