()
| 178 | } |
| 179 | |
| 180 | async stop() { |
| 181 | await new Promise(cb => this._server!.close(cb)); |
| 182 | } |
| 183 | |
| 184 | urlPrefix(purpose: 'human-readable' | 'precise'): string { |
| 185 | return purpose === 'human-readable' ? this._urlPrefixHumanReadable : this._urlPrefixPrecise; |
no test coverage detected