-
Notifications
You must be signed in to change notification settings - Fork 9.4k
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
disable Google Translate service during Lighthouse run #897
Conversation
@@ -20,7 +20,7 @@ | |||
const withoutJsAudit = require('../../audits/without-javascript.js'); | |||
const assert = require('assert'); | |||
|
|||
describe.only('Progressive Enhancement: without javascript audit', () => { | |||
describe('Progressive Enhancement: without javascript audit', () => { |
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.
whoops
@@ -53,6 +53,7 @@ class ChromeLauncher { | |||
const flags = [ | |||
'--remote-debugging-port=9222', | |||
'--disable-extensions', | |||
'--disable-translate', |
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.
lets add this too:
--disable-default-apps
"Disables installation of default apps on first run. This is used during automated testing"
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.
there's also
which apparently will flip off some authentication work
chrome_session_manager.cc - Code Search
nice work! |
fixes #896