(prefix: string)
| 81 | // Synthetic identities only; every test mints its own ids so the shared test |
| 82 | // database never couples two tests. |
| 83 | const freshId = (prefix: string) => `${prefix}_${crypto.randomUUID().replaceAll("-", "")}`; |
| 84 | |
| 85 | const workosUser = (id: string, overrides: Partial<User> = {}): User => ({ |
| 86 | object: "user", |
no outgoing calls
no test coverage detected