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
0
Merge Requests
0
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
Jérome Perrin
gitlab-ce
Commits
3839dd0d
Commit
3839dd0d
authored
Nov 01, 2017
by
Mike Greiling
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
enable CHROME_HEADLESS environment variable for Spinach tests similar to RSpec
parent
1d85dbc9
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
features/support/capybara.rb
features/support/capybara.rb
+4
-1
No files found.
features/support/capybara.rb
View file @
3839dd0d
...
...
@@ -5,9 +5,12 @@ timeout = (ENV['CI'] || ENV['CI_SERVER']) ? 60 : 30
Capybara
.
javascript_driver
=
:chrome
Capybara
.
register_driver
:chrome
do
|
app
|
extra_args
=
[]
extra_args
<<
'headless'
unless
ENV
[
'CHROME_HEADLESS'
]
=~
/^(false|no|0)$/i
capabilities
=
Selenium
::
WebDriver
::
Remote
::
Capabilities
.
chrome
(
chromeOptions:
{
'args'
=>
%w[
headless no-sandbox disable-gpu --window-size=1240,1400]
'args'
=>
%w[
no-sandbox disable-gpu --window-size=1240,1400]
+
extra_args
}
)
...
...
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