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