Commit 58a7e8fb authored by Thomas Randolph's avatar Thomas Randolph

Add test for the commit pipeline page showing no related MRs

parent d32161a5
......@@ -6,23 +6,32 @@ RSpec.describe 'project commit pipelines', :js do
let(:project) { create(:project, :repository) }
before do
create(:ci_pipeline, project: project,
sha: project.commit.sha,
ref: 'master')
user = create(:user)
project.add_maintainer(user)
sign_in(user)
visit pipelines_project_commit_path(project, project.commit.sha)
end
context 'when no builds triggered yet' do
before do
create(:ci_pipeline, project: project,
sha: project.commit.sha,
ref: 'master')
it 'shows the ID of the first pipeline' do
page.within('.table-holder') do
expect(page).to have_content project.ci_pipelines[0].id # pipeline ids
end
end
end
it 'user views commit pipelines page' do
visit pipelines_project_commit_path(project, project.commit.sha)
context 'with no related merge requests' do
it 'shows the correct text for no related MRs' do
wait_for_requests
page.within('.table-holder') do
expect(page).to have_content project.ci_pipelines[0].id # pipeline ids
page.within('.merge-request-info') do
expect(page).not_to have_selector '.spinner'
expect(page).to have_content 'No related merge requests found'
end
end
end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment