-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Splitting Chromium out of Chrome and adding support for preferHeadles…
…sSetting `preferHeadless=true` for travis fixes flaky test failures.
- Loading branch information
Jonathan Felchlin
committed
Mar 21, 2018
1 parent
8929455
commit 85df35a
Showing
9 changed files
with
68 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
module.exports = { | ||
name: 'Chromium', | ||
DEFAULT_CMD: { | ||
linux: [ | ||
// Try chromium-browser before chromium to avoid conflict with the legacy | ||
// chromium-bsu package previously known as 'chromium' in Debian and Ubuntu. | ||
'chromium-browser', | ||
'chromium', | ||
], | ||
darwin: [ | ||
'/Applications/Google Chrome.app/Contents/MacOS/Chromium', | ||
], | ||
win32: [ | ||
process.env['ProgramFiles(x86)'] + '\\Chromium\\Application\\chrome.exe', | ||
], | ||
}, | ||
ENV_CMD: 'CHROMIUM_BIN' | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters