(path: string, params: Record<string, string>)
| 61 | const it = testEffect(Layer.mergeAll(appLayer, httpApiLayer)) |
| 62 | |
| 63 | function pathFor(path: string, params: Record<string, string>) { |
| 64 | return Object.entries(params).reduce((result, [key, value]) => result.replace(`:${key}`, value), path) |
| 65 | } |
| 66 | |
| 67 | function createSession(input?: Session.CreateInput) { |
| 68 | return Session.use.create(input) |
no outgoing calls
no test coverage detected