(username: string, password: string)
| 66 | const itV2Secret = testEffect(v2ApiLayer.pipe(Layer.provide(secretLayer))) |
| 67 | |
| 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 |
no outgoing calls
no test coverage detected