mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-09 20:56:08 +10:00
Include missing events and fix save functionality in admin service template settings form ### What does this MR do? This MR includes missing settings left out in the Admin -> Service Templates page and fixes the inability to save certain settings. ### Are there points in the code the reviewer needs to double check? No. ### Why was this MR needed? Because the service template form was broken and untested. ### What are the relevant issue numbers / [Feature requests](http://feedback.gitlab.com/)? #1275 Before:  After:  See merge request !427
17 lines
512 B
Gherkin
17 lines
512 B
Gherkin
@admin
|
|
Feature: Admin Settings
|
|
Background:
|
|
Given I sign in as an admin
|
|
And I visit admin settings page
|
|
|
|
Scenario: Change application settings
|
|
When I modify settings and save form
|
|
Then I should see application settings saved
|
|
|
|
Scenario: Change Slack Service Template settings
|
|
When I click on "Service Templates"
|
|
And I click on "Slack" service
|
|
Then I check all events and submit form
|
|
And I should see service template settings saved
|
|
And I should see all checkboxes checked
|