()
| 73 | name: 'denoHttpIntegration: included in default integrations on Deno >= 2.7.13', |
| 74 | ignore: !HTTP_CLIENT_DIAGNOSTICS_CHANNEL_SUPPORTED, |
| 75 | fn() { |
| 76 | resetGlobals(); |
| 77 | const client = init({ dsn: 'https://username@domain/123' }) as DenoClient; |
| 78 | const names = client.getOptions().integrations.map(i => i.name); |
| 79 | assert( |
| 80 | names.includes('DenoHttp'), |
| 81 | `DenoHttp should be a default integration on Deno ${DENO_VERSION.major}.${DENO_VERSION.minor}.${DENO_VERSION.patch}, got ${names.join(', ')}`, |
| 82 | ); |
| 83 | }, |
| 84 | }); |
| 85 | |
| 86 | Deno.test({ |
no test coverage detected