@@ -6,14 +6,14 @@ import { SpanJSON } from '@sentry/types';
66test ( 'Propagates trace for outgoing http requests' , async ( { baseURL } ) => {
77 const id = crypto . randomUUID ( ) ;
88
9- const inboundTransactionPromise = waitForTransaction ( 'node- nestjs' , transactionEvent => {
9+ const inboundTransactionPromise = waitForTransaction ( 'nestjs' , transactionEvent => {
1010 return (
1111 transactionEvent . contexts ?. trace ?. op === 'http.server' &&
1212 transactionEvent . contexts ?. trace ?. data ?. [ 'http.target' ] === `/test-inbound-headers/${ id } `
1313 ) ;
1414 } ) ;
1515
16- const outboundTransactionPromise = waitForTransaction ( 'node- nestjs' , transactionEvent => {
16+ const outboundTransactionPromise = waitForTransaction ( 'nestjs' , transactionEvent => {
1717 return (
1818 transactionEvent . contexts ?. trace ?. op === 'http.server' &&
1919 transactionEvent . contexts ?. trace ?. data ?. [ 'http.target' ] === `/test-outgoing-http/${ id } `
@@ -121,14 +121,14 @@ test('Propagates trace for outgoing http requests', async ({ baseURL }) => {
121121test ( 'Propagates trace for outgoing fetch requests' , async ( { baseURL } ) => {
122122 const id = crypto . randomUUID ( ) ;
123123
124- const inboundTransactionPromise = waitForTransaction ( 'node- nestjs' , transactionEvent => {
124+ const inboundTransactionPromise = waitForTransaction ( 'nestjs' , transactionEvent => {
125125 return (
126126 transactionEvent ?. contexts ?. trace ?. op === 'http.server' &&
127127 transactionEvent . contexts ?. trace ?. data ?. [ 'http.target' ] === `/test-inbound-headers/${ id } `
128128 ) ;
129129 } ) ;
130130
131- const outboundTransactionPromise = waitForTransaction ( 'node- nestjs' , transactionEvent => {
131+ const outboundTransactionPromise = waitForTransaction ( 'nestjs' , transactionEvent => {
132132 return (
133133 transactionEvent ?. contexts ?. trace ?. op === 'http.server' &&
134134 transactionEvent . contexts ?. trace ?. data ?. [ 'http.target' ] === `/test-outgoing-fetch/${ id } `
@@ -234,7 +234,7 @@ test('Propagates trace for outgoing fetch requests', async ({ baseURL }) => {
234234} ) ;
235235
236236test ( 'Propagates trace for outgoing external http requests' , async ( { baseURL } ) => {
237- const inboundTransactionPromise = waitForTransaction ( 'node- nestjs' , transactionEvent => {
237+ const inboundTransactionPromise = waitForTransaction ( 'nestjs' , transactionEvent => {
238238 return (
239239 transactionEvent ?. contexts ?. trace ?. op === 'http.server' &&
240240 transactionEvent . contexts ?. trace ?. data ?. [ 'http.target' ] === `/test-outgoing-http-external-allowed`
@@ -271,7 +271,7 @@ test('Propagates trace for outgoing external http requests', async ({ baseURL })
271271} ) ;
272272
273273test ( 'Does not propagate outgoing http requests not covered by tracePropagationTargets' , async ( { baseURL } ) => {
274- const inboundTransactionPromise = waitForTransaction ( 'node- nestjs' , transactionEvent => {
274+ const inboundTransactionPromise = waitForTransaction ( 'nestjs' , transactionEvent => {
275275 return (
276276 transactionEvent ?. contexts ?. trace ?. op === 'http.server' &&
277277 transactionEvent . contexts ?. trace ?. data ?. [ 'http.target' ] === `/test-outgoing-http-external-disallowed`
@@ -295,7 +295,7 @@ test('Does not propagate outgoing http requests not covered by tracePropagationT
295295} ) ;
296296
297297test ( 'Propagates trace for outgoing external fetch requests' , async ( { baseURL } ) => {
298- const inboundTransactionPromise = waitForTransaction ( 'node- nestjs' , transactionEvent => {
298+ const inboundTransactionPromise = waitForTransaction ( 'nestjs' , transactionEvent => {
299299 return (
300300 transactionEvent ?. contexts ?. trace ?. op === 'http.server' &&
301301 transactionEvent . contexts ?. trace ?. data ?. [ 'http.target' ] === `/test-outgoing-fetch-external-allowed`
@@ -332,7 +332,7 @@ test('Propagates trace for outgoing external fetch requests', async ({ baseURL }
332332} ) ;
333333
334334test ( 'Does not propagate outgoing fetch requests not covered by tracePropagationTargets' , async ( { baseURL } ) => {
335- const inboundTransactionPromise = waitForTransaction ( 'node- nestjs' , transactionEvent => {
335+ const inboundTransactionPromise = waitForTransaction ( 'nestjs' , transactionEvent => {
336336 return (
337337 transactionEvent ?. contexts ?. trace ?. op === 'http.server' &&
338338 transactionEvent . contexts ?. trace ?. data ?. [ 'http.target' ] === `/test-outgoing-fetch-external-disallowed`
0 commit comments