(spy: ReturnType<typeof vi.spyOn>)
| 240 | } |
| 241 | |
| 242 | function patchCall(spy: ReturnType<typeof vi.spyOn>) { |
| 243 | return (spy as any).mock.calls.find( |
| 244 | ([m]: [string]) => m === "session.options.update" |
| 245 | )![1] as any; |
| 246 | } |
| 247 | |
| 248 | it("forces enableSessionTelemetry=false when app didn't opt in", async () => { |
| 249 | const { client, spy } = await setupClient(); |
no outgoing calls
no test coverage detected
searching dependent graphs…