* Define additional command line arguments to use when starting the server. * * @param {...CommandLineFlag} var_args The arguments to include. * @return {!THIS} A self reference. * @this {THIS} * @template THIS
(...arguments_)
| 340 | * @template THIS |
| 341 | */ |
| 342 | addArguments(...arguments_) { |
| 343 | this.options_.args = this.options_.args.concat(arguments_) |
| 344 | return this |
| 345 | } |
| 346 | |
| 347 | /** |
| 348 | * Sets the host name to access the server on. If specified, the |
no test coverage detected