* IO configuration for the spawned server process. For more information, * refer to the documentation of `child_process.spawn`. * * @param {StdIoOptions} config The desired IO configuration. * @return {!DriverService.Builder} A self reference. * @see https://nodejs.org/dist/latest-v4.
(config)
| 425 | * @see https://nodejs.org/dist/latest-v4.x/docs/api/child_process.html#child_process_options_stdio |
| 426 | */ |
| 427 | setStdio(config) { |
| 428 | this.options_.stdio = config |
| 429 | return this |
| 430 | } |
| 431 | |
| 432 | /** |
| 433 | * Creates a new DriverService using this instance's current configuration. |
no outgoing calls
no test coverage detected