(clientId: string, clientSecret: string)
| 176 | const executor = yield* setup([]); |
| 177 | const slug = OAuthClientSlug.make("transactional-client"); |
| 178 | const client = (clientId: string, clientSecret: string) => ({ |
| 179 | owner: "org" as const, |
| 180 | slug, |
| 181 | authorizationUrl: "https://example.test/authorize", |
| 182 | tokenUrl: "https://example.test/token", |
| 183 | grant: "client_credentials" as const, |
| 184 | clientId, |
| 185 | clientSecret, |
| 186 | }); |
| 187 | |
| 188 | const newResult = yield* Effect.exit( |
| 189 | executor.demo.inTransaction( |
no outgoing calls
no test coverage detected