(_req)
| 34 | test('generates a transaction around a request', async () => { |
| 35 | const server = Bun.serve({ |
| 36 | async fetch(_req) { |
| 37 | return new Response('Bun!', { headers: new Headers({ 'x-custom': 'value' }) }); |
| 38 | }, |
| 39 | port, |
| 40 | }); |
| 41 | await fetch(`http://localhost:${port}/users?id=123`); |
no outgoing calls
no test coverage detected