# frozen_string_literal: true require 'spec_helper' # This test serves as a regression test for a bug that caused an error # message to be shown by JavaScript when the source branch was deleted. # Please do not remove ":js". RSpec.describe 'Merge request > User sees MR with deleted source branch', :js, feature_category: :code_review_workflow do let(:project) { create(:project, :public, :repository) } let(:merge_request) { create(:merge_request, source_project: project) } let(:user) { project.creator } before do merge_request.update!(source_branch: 'this-branch-does-not-exist') sign_in(user) visit project_merge_request_path(project, merge_request) end it 'shows a message about missing source branch' do expect(page).to have_content('The source branch this-branch-does-not-exist does not exist.') end it 'still contains Discussion, Commits and Changes tabs' do within '.merge-request-details' do expect(page).to have_content('Overview') expect(page).to have_content('Commits') expect(page).to have_content('Changes') end expect(page).to have_content('The source branch this-branch-does-not-exist does not exist.') click_on 'Changes' wait_for_requests expect(page).to have_selector('.diffs.tab-pane .file-holder') end end