summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--spec/features/environments_spec.rb10
1 files changed, 2 insertions, 8 deletions
diff --git a/spec/features/environments_spec.rb b/spec/features/environments_spec.rb
index 7200e9ad4c1..b565586ee14 100644
--- a/spec/features/environments_spec.rb
+++ b/spec/features/environments_spec.rb
@@ -20,11 +20,8 @@ feature 'Environments', feature: true do
end
context 'shows two tabs' do
- scenario 'does show Available tab with link' do
+ scenario 'shows "Available" and "Stopped" tab with links' do
expect(page).to have_link('Available')
- end
-
- scenario 'does show Stopped tab with link' do
expect(page).to have_link('Stopped')
end
end
@@ -47,11 +44,8 @@ feature 'Environments', feature: true do
expect(page).to have_link(environment.name)
end
- scenario 'does show number of opened environments in Available tab' do
+ scenario 'does show number of available and stopped environments' do
expect(page.find('.js-available-environments-count').text).to eq('1')
- end
-
- scenario 'does show number of closed environments in Stopped tab' do
expect(page.find('.js-stopped-environments-count').text).to eq('0')
end