(email: string, calls: string[])
| 69 | ); |
| 70 | |
| 71 | const resolve = (email: string, calls: string[]) => |
| 72 | Effect.gen(function* () { |
| 73 | const context = yield* Effect.context<WorkOSClient>(); |
| 74 | return yield* emailResolver(ORG, context)(email); |
| 75 | }).pipe(Effect.provide(stubWorkOS(calls))); |
| 76 | |
| 77 | it.effect("resolves an email to the member's WorkOS user id", () => |
| 78 | Effect.gen(function* () { |
no test coverage detected