feat(launcher): disable crash reporting by default (#2652)
This patch disables crash reporting since it's not needed for automation purposes. It also deals some troubles for us since crashpad is a separate process on Windows which has a larger lifetime than chromium. This, in turn, prevents us from cleaning up profile directory.
This commit is contained in:
parent
724fa512cf
commit
0f8c7e76c2
@ -33,6 +33,7 @@ const CHROME_PROFILE_PATH = path.join(os.tmpdir(), 'puppeteer_dev_profile-');
|
||||
const DEFAULT_ARGS = [
|
||||
'--disable-background-networking',
|
||||
'--disable-background-timer-throttling',
|
||||
'--disable-breakpad',
|
||||
'--disable-client-side-phishing-detection',
|
||||
'--disable-default-apps',
|
||||
'--disable-dev-shm-usage',
|
||||
|
Loading…
Reference in New Issue
Block a user