()
| 481 | port: server.port!, |
| 482 | authToken, |
| 483 | async stop() { |
| 484 | if (stopped) return; |
| 485 | stopped = true; |
| 486 | server.stop(true); |
| 487 | await disposeOwnedResources(); |
| 488 | }, |
| 489 | }; |
| 490 | } catch (cause) { |
| 491 | await ignoreCleanupFailure(disposeOwnedResources); |
nothing calls this directly
no test coverage detected