* @return {!Promise } A promise that resolves to the server's address. * @throws {Error} If the server has not been started.
()
| 179 | * @throws {Error} If the server has not been started. |
| 180 | */ |
| 181 | address() { |
| 182 | if (this.address_) { |
| 183 | return this.address_ |
| 184 | } |
| 185 | throw Error('Server has not been started.') |
| 186 | } |
| 187 | |
| 188 | /** |
| 189 | * Returns whether the underlying process is still running. This does not take |
no test coverage detected