(scenario: ActiveScenario, ctx: SeededContext<unknown>, options: CallOptions = {})
| 12 | } |
| 13 | |
| 14 | export function call(scenario: ActiveScenario, ctx: SeededContext<unknown>, options: CallOptions = {}) { |
| 15 | return Effect.promise(async () => |
| 16 | capture(await app(await runtime(), options).request(toRequest(scenario, ctx)), scenario.capture), |
| 17 | ) |
| 18 | } |
| 19 | |
| 20 | export function callAuthProbe(scenario: ActiveScenario, credentials: "missing" | "valid" = "missing") { |
| 21 | return Effect.promise(async () => { |