-
Notifications
You must be signed in to change notification settings - Fork 343
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
chore(deps): Upgrade chrome-launcher from 0.15.1 to 1.1.2 #3200
Changes from all commits
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 |
---|---|---|
|
@@ -49,7 +49,7 @@ describe('util/extension-runners/chromium', async () => { | |
it('uses the expected chrome flags', () => { | ||
// Flags from chrome-launcher v0.14.0 | ||
const expectedFlags = [ | ||
'--disable-features=Translate', | ||
'--disable-features=Translate,OptimizationHints,MediaRouter,DialMediaRouteProvider,CalculateNativeWinOcclusion,InterestFeedContentSuggestions,CertificateTransparencyComponentUpdater,AutofillServerCommunication,PrivacySandboxSettings4', | ||
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. Do any of these cover the new search engines picker? It's quite annoying. Starting a new profile ( |
||
'--disable-component-extensions-with-background-pages', | ||
'--disable-background-networking', | ||
'--disable-component-update', | ||
|
@@ -66,6 +66,10 @@ describe('util/extension-runners/chromium', async () => { | |
'--password-store=basic', | ||
'--use-mock-keychain', | ||
'--force-fieldtrials=*BackgroundTracing/default/', | ||
'--disable-hang-monitor', | ||
'--disable-prompt-on-repost', | ||
'--disable-domain-reliability', | ||
'--propagate-iph-for-testing', | ||
]; | ||
|
||
assert.deepEqual(DEFAULT_CHROME_FLAGS, expectedFlags); | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
None of the changes to the default flags seem relevant to extensions so I didn't adjust the filtering, but someone more familiar with browsers might want to double check.