(spy: ReturnType<typeof vi.spyOn>)
| 236 | } |
| 237 | |
| 238 | function createPayload(spy: ReturnType<typeof vi.spyOn>) { |
| 239 | return (spy as any).mock.calls.find(([m]: [string]) => m === "session.create")![1] as any; |
| 240 | } |
| 241 | |
| 242 | function patchCall(spy: ReturnType<typeof vi.spyOn>) { |
| 243 | return (spy as any).mock.calls.find( |
no outgoing calls
no test coverage detected
searching dependent graphs…