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
9cf9cc8e
Commit
9cf9cc8e
authored
Apr 13, 2018
by
Mike Greiling
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
prefer &. to .try
parent
960e2065
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
spec/support/capybara.rb
spec/support/capybara.rb
+1
-1
No files found.
spec/support/capybara.rb
View file @
9cf9cc8e
...
...
@@ -84,7 +84,7 @@ RSpec.configure do |config|
config
.
after
(
:example
,
:js
)
do
|
example
|
# when a test fails, display any messages in the browser's console
if
example
.
exception
console
=
page
.
driver
.
browser
.
manage
.
logs
.
get
(
:browser
)
.
try
(
:reject
)
{
|
log
|
log
.
message
=~
JS_CONSOLE_FILTER
}
console
=
page
.
driver
.
browser
.
manage
.
logs
.
get
(
:browser
)
&
.
reject
{
|
log
|
log
.
message
=~
JS_CONSOLE_FILTER
}
if
console
.
present?
message
=
"Unexpected browser console output:
\n
"
+
console
.
map
(
&
:message
).
join
(
"
\n
"
)
raise
JSConsoleError
,
message
...
...
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