@@ -6,14 +6,14 @@ import { SpanJSON } from '@sentry/types';
6
6
test ( 'Propagates trace for outgoing http requests' , async ( { baseURL } ) => {
7
7
const id = crypto . randomUUID ( ) ;
8
8
9
- const inboundTransactionPromise = waitForTransaction ( 'node- nestjs' , transactionEvent => {
9
+ const inboundTransactionPromise = waitForTransaction ( 'nestjs' , transactionEvent => {
10
10
return (
11
11
transactionEvent . contexts ?. trace ?. op === 'http.server' &&
12
12
transactionEvent . contexts ?. trace ?. data ?. [ 'http.target' ] === `/test-inbound-headers/${ id } `
13
13
) ;
14
14
} ) ;
15
15
16
- const outboundTransactionPromise = waitForTransaction ( 'node- nestjs' , transactionEvent => {
16
+ const outboundTransactionPromise = waitForTransaction ( 'nestjs' , transactionEvent => {
17
17
return (
18
18
transactionEvent . contexts ?. trace ?. op === 'http.server' &&
19
19
transactionEvent . contexts ?. trace ?. data ?. [ 'http.target' ] === `/test-outgoing-http/${ id } `
@@ -121,14 +121,14 @@ test('Propagates trace for outgoing http requests', async ({ baseURL }) => {
121
121
test ( 'Propagates trace for outgoing fetch requests' , async ( { baseURL } ) => {
122
122
const id = crypto . randomUUID ( ) ;
123
123
124
- const inboundTransactionPromise = waitForTransaction ( 'node- nestjs' , transactionEvent => {
124
+ const inboundTransactionPromise = waitForTransaction ( 'nestjs' , transactionEvent => {
125
125
return (
126
126
transactionEvent ?. contexts ?. trace ?. op === 'http.server' &&
127
127
transactionEvent . contexts ?. trace ?. data ?. [ 'http.target' ] === `/test-inbound-headers/${ id } `
128
128
) ;
129
129
} ) ;
130
130
131
- const outboundTransactionPromise = waitForTransaction ( 'node- nestjs' , transactionEvent => {
131
+ const outboundTransactionPromise = waitForTransaction ( 'nestjs' , transactionEvent => {
132
132
return (
133
133
transactionEvent ?. contexts ?. trace ?. op === 'http.server' &&
134
134
transactionEvent . contexts ?. trace ?. data ?. [ 'http.target' ] === `/test-outgoing-fetch/${ id } `
@@ -234,7 +234,7 @@ test('Propagates trace for outgoing fetch requests', async ({ baseURL }) => {
234
234
} ) ;
235
235
236
236
test ( 'Propagates trace for outgoing external http requests' , async ( { baseURL } ) => {
237
- const inboundTransactionPromise = waitForTransaction ( 'node- nestjs' , transactionEvent => {
237
+ const inboundTransactionPromise = waitForTransaction ( 'nestjs' , transactionEvent => {
238
238
return (
239
239
transactionEvent ?. contexts ?. trace ?. op === 'http.server' &&
240
240
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 })
271
271
} ) ;
272
272
273
273
test ( '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 => {
275
275
return (
276
276
transactionEvent ?. contexts ?. trace ?. op === 'http.server' &&
277
277
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
295
295
} ) ;
296
296
297
297
test ( 'Propagates trace for outgoing external fetch requests' , async ( { baseURL } ) => {
298
- const inboundTransactionPromise = waitForTransaction ( 'node- nestjs' , transactionEvent => {
298
+ const inboundTransactionPromise = waitForTransaction ( 'nestjs' , transactionEvent => {
299
299
return (
300
300
transactionEvent ?. contexts ?. trace ?. op === 'http.server' &&
301
301
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 }
332
332
} ) ;
333
333
334
334
test ( '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 => {
336
336
return (
337
337
transactionEvent ?. contexts ?. trace ?. op === 'http.server' &&
338
338
transactionEvent . contexts ?. trace ?. data ?. [ 'http.target' ] === `/test-outgoing-fetch-external-disallowed`
0 commit comments