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
265251ed
Commit
265251ed
authored
May 15, 2020
by
Albert Salim
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Quarantine error_tracking_shared_example tests
parent
fdfb6a5c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
spec/support/shared_examples/features/error_tracking_shared_example.rb
...shared_examples/features/error_tracking_shared_example.rb
+4
-4
No files found.
spec/support/shared_examples/features/error_tracking_shared_example.rb
View file @
265251ed
# frozen_string_literal: true
shared_examples
'error tracking index page'
do
it
'renders the error index page'
do
it
'renders the error index page'
,
quarantine:
{
issue:
'https://gitlab.com/gitlab-org/gitlab/-/issues/217810'
}
do
within
(
'div.js-title-container'
)
do
expect
(
page
).
to
have_content
(
project
.
namespace
.
name
)
expect
(
page
).
to
have_content
(
project
.
name
)
...
...
@@ -15,7 +15,7 @@ shared_examples 'error tracking index page' do
end
end
it
'loads the error show page on click'
do
it
'loads the error show page on click'
,
quarantine:
{
issue:
'https://gitlab.com/gitlab-org/gitlab/-/issues/217810'
}
do
click_on
issues_response
[
0
][
'title'
]
wait_for_requests
...
...
@@ -23,7 +23,7 @@ shared_examples 'error tracking index page' do
expect
(
page
).
to
have_content
(
'Error Details'
)
end
it
'renders the error index data'
do
it
'renders the error index data'
,
quarantine:
{
issue:
'https://gitlab.com/gitlab-org/gitlab/-/issues/217810'
}
do
within
(
'div.error-list'
)
do
expect
(
page
).
to
have_content
(
issues_response
[
0
][
'title'
])
expect
(
page
).
to
have_content
(
issues_response
[
0
][
'count'
].
to_s
)
...
...
@@ -34,7 +34,7 @@ shared_examples 'error tracking index page' do
end
shared_examples
'expanded stack trace context'
do
|
selected_line:
nil
,
expected_line:
1
|
it
'expands the stack trace context'
do
it
'expands the stack trace context'
,
quarantine:
{
issue:
'https://gitlab.com/gitlab-org/gitlab/-/issues/217810'
}
do
within
(
'div.stacktrace'
)
do
find
(
"div.file-holder:nth-child(
#{
selected_line
}
) svg.ic-chevron-right"
).
click
if
selected_line
...
...
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