(username: string, password: string)
| 68 | const basic = (username: string, password: string) => ServerAuth.header({ username, password }) ?? "" |
| 69 | |
| 70 | const token = (username: string, password: string) => Buffer.from(`${username}:${password}`).toString("base64") |
| 71 | |
| 72 | const getProbe = (headers?: Record<string, string>) => |
| 73 | HttpClientRequest.get("/probe").pipe( |
no test coverage detected