docs: document LaunchOptions.dumpio (#1051)

This commit is contained in:
Daniel Imms 2020-02-18 08:56:20 -08:00 committed by GitHub
parent 010c27410a
commit 8a7728da3d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -34,6 +34,10 @@ export type LaunchOptions = BrowserArgOptions & {
handleSIGTERM?: boolean,
handleSIGHUP?: boolean,
timeout?: number,
/**
* Whether to dump stdio of the browser, this is useful for example when
* diagnosing browser launch issues.
*/
dumpio?: boolean,
env?: {[key: string]: string} | undefined
};