(staticRoot?: string)
| 57 | private _staticRoot: string | undefined; |
| 58 | |
| 59 | constructor(staticRoot?: string) { |
| 60 | this._server = createHttpServer(this._onRequest.bind(this)); |
| 61 | this._staticRoot = staticRoot ? path.resolve(staticRoot) : undefined; |
| 62 | } |
| 63 | |
| 64 | server() { |
| 65 | return this._server; |
nothing calls this directly
no test coverage detected