Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
58a7e8fb
Commit
58a7e8fb
authored
Jul 08, 2020
by
Thomas Randolph
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add test for the commit pipeline page showing no related MRs
parent
d32161a5
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
8 deletions
+17
-8
spec/features/projects/commit/builds_spec.rb
spec/features/projects/commit/builds_spec.rb
+17
-8
No files found.
spec/features/projects/commit/builds_spec.rb
View file @
58a7e8fb
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment