()
| 409 | } |
| 410 | |
| 411 | public async hotReload(): Promise<void> { |
| 412 | // If we reload too fast, things fail :-/ |
| 413 | await delay(500); |
| 414 | |
| 415 | await Promise.all([ |
| 416 | this.waitForHotReload(), |
| 417 | this.customRequest("hotReload"), |
| 418 | ]); |
| 419 | } |
| 420 | } |
nothing calls this directly
no test coverage detected