mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-01-21 07:55:00 +00:00
25 lines
642 B
Gherkin
25 lines
642 B
Gherkin
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
@system @essential @configuration
|
|
Feature: Configuration
|
|
Configure the system.
|
|
|
|
Background:
|
|
Given I'm a logged in user
|
|
|
|
Scenario: Change hostname
|
|
When I change the hostname to mybox
|
|
Then the hostname should be mybox
|
|
|
|
Scenario: Change domain name
|
|
When I change the domain name to mydomain.example
|
|
Then the domain name should be mydomain.example
|
|
|
|
Scenario: Change webserver home page
|
|
Given the syncthing application is installed
|
|
And the syncthing application is enabled
|
|
And the home page is syncthing
|
|
When I change the home page to plinth
|
|
Then the home page should be plinth
|
|
|