-
Notifications
You must be signed in to change notification settings - Fork 78
ci: replace browser-driver-manager with browser-actions/setup-chrome #1345
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: develop
Are you sure you want to change the base?
Changes from 7 commits
1cf723b
dc63fba
fff6ff8
464befa
9848781
ffd70e1
3fb465f
ab13717
8a986b1
b66ff76
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -52,8 +52,5 @@ | |
| "*.{json,css,md,html}": [ | ||
| "prettier --write" | ||
| ] | ||
| }, | ||
| "dependencies": { | ||
| "browser-driver-manager": "^2.0.0" | ||
| } | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -44,5 +44,9 @@ export function puppeteerOpts(): LaunchOptions { | |
| options.args.push('--no-sandbox', '--disable-setuid-sandbox'); | ||
| } | ||
|
|
||
| if (process.env.CHROME_TEST_PATH) { | ||
|
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same fallback pattern as the playwright and wdio configs: when CI set |
||
| options.executablePath = process.env.CHROME_TEST_PATH; | ||
| } | ||
|
|
||
| return options; | ||
| } | ||
Uh oh!
There was an error while loading. Please reload this page.