diff options
author | Jacob Schatz <jschatz@gitlab.com> | 2016-06-21 15:27:58 +0000 |
---|---|---|
committer | Jacob Schatz <jschatz@gitlab.com> | 2016-06-21 15:27:58 +0000 |
commit | 3a74ab29188bb692566a769363a37b781abf2867 (patch) | |
tree | b110ddbd181f6368f3690ef496fa6cfd4c15800c /spec | |
parent | ac4529f700014671437e46497dcdf630e67aca73 (diff) | |
parent | c207b9e0512f630b646d9e62f75ca13a188cf83b (diff) | |
download | gitlab-ce-3a74ab29188bb692566a769363a37b781abf2867.tar.gz |
Merge branch 'blank-state' into 'master'
Updated blank state for environments and deployments
## What does this MR do?
Adds a designed blank state to environments and deployments.
@markpundsack do we want to hide the new environments when empty? Looks weird otherwise with the green button at the top.
## What are the relevant issue numbers?
Closes #18661
## Screenshots (if relevant)


See merge request !4818
Diffstat (limited to 'spec')
-rw-r--r-- | spec/features/environments_spec.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/features/environments_spec.rb b/spec/features/environments_spec.rb index 40fea5211e9..7fb28f4174b 100644 --- a/spec/features/environments_spec.rb +++ b/spec/features/environments_spec.rb @@ -20,7 +20,7 @@ feature 'Environments', feature: true do context 'without environments' do scenario 'does show no environments' do - expect(page).to have_content('No environments to show') + expect(page).to have_content('You don\'t have any environments right now.') end end @@ -61,7 +61,7 @@ feature 'Environments', feature: true do context 'without deployments' do scenario 'does show no deployments' do - expect(page).to have_content('No deployments for') + expect(page).to have_content('You don\'t have any deployments right now.') end end @@ -108,7 +108,7 @@ feature 'Environments', feature: true do end scenario 'does create a new pipeline' do - expect(page).to have_content('production') + expect(page).to have_content('Production') end end |