diff options
author | Mike Greiling <mike@pixelcog.com> | 2018-11-06 14:30:50 -0600 |
---|---|---|
committer | Thong Kuah <tkuah@gitlab.com> | 2018-11-08 23:28:30 +1300 |
commit | 19a99d086b2ef5f1aed43d073dffb912b248273c (patch) | |
tree | 12e0dc2e063f6621595d68287ce51472dc7fa05d /spec | |
parent | 1dba5dbc3ad227aa0d3252efffb2dd1b2078eb0d (diff) | |
download | gitlab-ce-19a99d086b2ef5f1aed43d073dffb912b248273c.tar.gz |
Remove tests related to removed toggle button
Diffstat (limited to 'spec')
-rw-r--r-- | spec/features/projects/clusters_spec.rb | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/spec/features/projects/clusters_spec.rb b/spec/features/projects/clusters_spec.rb index f13c35c00d3..a85e7333ba8 100644 --- a/spec/features/projects/clusters_spec.rb +++ b/spec/features/projects/clusters_spec.rb @@ -35,37 +35,6 @@ describe 'Clusters', :js do expect(page).to have_selector('.gl-responsive-table-row', count: 2) end - context 'inline update of cluster' do - it 'user can update cluster' do - expect(page).to have_selector('.js-project-feature-toggle') - end - - context 'with successful request' do - it 'user sees updated cluster' do - expect do - page.find('.js-project-feature-toggle').click - wait_for_requests - end.to change { cluster.reload.enabled } - - expect(page).not_to have_selector('.is-checked') - expect(cluster.reload).not_to be_enabled - end - end - - context 'with failed request' do - it 'user sees not update cluster and error message' do - expect_any_instance_of(Clusters::UpdateService).to receive(:execute).and_call_original - allow_any_instance_of(Clusters::Cluster).to receive(:valid?) { false } - - page.find('.js-project-feature-toggle').click - - expect(page).to have_content('Something went wrong on our end.') - expect(page).to have_selector('.is-checked') - expect(cluster.reload).to be_enabled - end - end - end - context 'when user clicks on a cluster' do before do click_link cluster.name |