(ciphertext)
| 28 | } |
| 29 | |
| 30 | function encryptedTrace(ciphertext) { |
| 31 | return { |
| 32 | encrypted: true, |
| 33 | algorithm: 'aes-256-gcm', |
| 34 | payload_schema: 'prism_trace_row', |
| 35 | iv: 'aXYxMjM0NTY3ODkw', |
| 36 | tag: 'dGFnMTIzNDU2Nzg5MA==', |
| 37 | ciphertext, |
| 38 | }; |
| 39 | } |
| 40 | |
| 41 | describe('proxy trace outbound sync', () => { |
| 42 | let savedOutboundMaxBytes; |
no outgoing calls
no test coverage detected