diff options
| author | Filipa Lacerda <filipa@gitlab.com> | 2016-11-10 16:03:43 +0000 |
|---|---|---|
| committer | Filipa Lacerda <filipa@gitlab.com> | 2016-11-10 16:03:43 +0000 |
| commit | 5f106512be09b6230080c5cff7eb7a7f896284b9 (patch) | |
| tree | ab7bfc020ae8a359b06bbeca8a99896aca174cac | |
| parent | 1494abe982583c564969baaba7daa251ef333156 (diff) | |
| download | gitlab-ce-5f106512be09b6230080c5cff7eb7a7f896284b9.tar.gz | |
Adds tests
Adds changelog entry in the correct place
| -rw-r--r-- | CHANGELOG.md | 1 | ||||
| -rw-r--r-- | changelogs/unreleased/24147-delete-env-button.yml | 4 | ||||
| -rw-r--r-- | spec/features/environments_spec.rb | 8 |
3 files changed, 12 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 1c85d4aac44..8250b9b5cdb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -93,7 +93,6 @@ entry. - Return conflict error in label API when title is taken by group label. !7014 - Reduce the overhead to calculate number of open/closed issues and merge requests within the group or project. !7123 - Fix builds tab visibility. !7178 -- Fix delete environment missing button. !7379 - Fix project features default values. !7181 ## 8.13.3 (2016-11-02) diff --git a/changelogs/unreleased/24147-delete-env-button.yml b/changelogs/unreleased/24147-delete-env-button.yml new file mode 100644 index 00000000000..159d9db492f --- /dev/null +++ b/changelogs/unreleased/24147-delete-env-button.yml @@ -0,0 +1,4 @@ +--- +title: Adds back ability to stop all environments +merge_request: 7379 +author:
\ No newline at end of file diff --git a/spec/features/environments_spec.rb b/spec/features/environments_spec.rb index 7c9584f6bf1..eded771201b 100644 --- a/spec/features/environments_spec.rb +++ b/spec/features/environments_spec.rb @@ -239,6 +239,14 @@ feature 'Environments', feature: true do end end end + + context 'whitout stop action'do + scenario 'does allow to stop environment' do + click_link('Stop') + + expect(page).to have_content(environment.name.capitalize) + end + end end end end |
