(queryInfo: SqlCommenterQueryInfo)
| 5 | |
| 6 | // Helper to create a mock context |
| 7 | function createMockContext(queryInfo: SqlCommenterQueryInfo): SqlCommenterContext { |
| 8 | return { |
| 9 | query: queryInfo, |
| 10 | } |
| 11 | } |
| 12 | |
| 13 | // Helper to decode base64url for test assertions |
| 14 | function fromBase64Url(data: string): string { |