| 7 | export const TARGET_PORT = 19000; |
| 8 | |
| 9 | export interface TestServers { |
| 10 | pacServer: http.Server; |
| 11 | proxyServer: http.Server; |
| 12 | targetServer: http.Server; |
| 13 | } |
| 14 | |
| 15 | /** Serves .pac files from the pac-files/ directory. */ |
| 16 | function createPacServer(): Promise<http.Server> { |
nothing calls this directly
no outgoing calls
no test coverage detected