mirror of
https://github.com/Ombi-app/Ombi.git
synced 2024-11-23 05:50:09 -08:00
21bfc5a45a
* updates * test coverage on the plex settings page * features * Update cypress.yml * Update cypress.yml * Update cypress.yml * Update cypress.config.ts * fixes * stuff * put it back * a * always kill docker * Run the wizard as part of the feature files * fix? * slow the tests down * subby * Update user-preferences-profile.spec.ts * Update user-preferences-profile.spec.ts
21 lines
733 B
Gherkin
21 lines
733 B
Gherkin
|
|
Feature: Wizard Setup
|
|
Scenario: When visiting Ombi for the first time we should be on the Wizard page
|
|
When I visit Ombi
|
|
Then I should be on the "Wizard"
|
|
|
|
Scenario: When navigating through the Wizard feature we are required to create a local user
|
|
When I visit Ombi
|
|
And I click through all of the pages
|
|
And I finish the Wizard
|
|
Then I should get a notification "Username '' is invalid, can only contain letters or digits."
|
|
And I should be on the User tab
|
|
|
|
Scenario: Completing the Wizard
|
|
When I visit Ombi
|
|
And I click through to the user page
|
|
And I enter a username
|
|
And I enter a password
|
|
And I go to the finished tab
|
|
And I finish the Wizard
|
|
Then I should be on the "login" |