@@ -4,14 +4,14 @@ import axios from 'axios';
4
4
import { waitForTransaction } from '../event-proxy-server' ;
5
5
6
6
test ( 'Propagates trace for outgoing http requests' , async ( { baseURL } ) => {
7
- const inboundTransactionPromise = waitForTransaction ( 'node-experimental- fastify-app' , transactionEvent => {
7
+ const inboundTransactionPromise = waitForTransaction ( 'node-fastify-app' , transactionEvent => {
8
8
return (
9
9
transactionEvent ?. contexts ?. trace ?. op === 'http.server' &&
10
10
transactionEvent ?. transaction === 'GET /test-inbound-headers'
11
11
) ;
12
12
} ) ;
13
13
14
- const outboundTransactionPromise = waitForTransaction ( 'node-experimental- fastify-app' , transactionEvent => {
14
+ const outboundTransactionPromise = waitForTransaction ( 'node-fastify-app' , transactionEvent => {
15
15
return (
16
16
transactionEvent ?. contexts ?. trace ?. op === 'http.server' &&
17
17
transactionEvent ?. transaction === 'GET /test-outgoing-http'
@@ -118,14 +118,14 @@ test('Propagates trace for outgoing http requests', async ({ baseURL }) => {
118
118
} ) ;
119
119
120
120
test ( 'Propagates trace for outgoing fetch requests' , async ( { baseURL } ) => {
121
- const inboundTransactionPromise = waitForTransaction ( 'node-experimental- fastify-app' , transactionEvent => {
121
+ const inboundTransactionPromise = waitForTransaction ( 'node-fastify-app' , transactionEvent => {
122
122
return (
123
123
transactionEvent ?. contexts ?. trace ?. op === 'http.server' &&
124
124
transactionEvent ?. transaction === 'GET /test-inbound-headers'
125
125
) ;
126
126
} ) ;
127
127
128
- const outboundTransactionPromise = waitForTransaction ( 'node-experimental- fastify-app' , transactionEvent => {
128
+ const outboundTransactionPromise = waitForTransaction ( 'node-fastify-app' , transactionEvent => {
129
129
return (
130
130
transactionEvent ?. contexts ?. trace ?. op === 'http.server' &&
131
131
transactionEvent ?. transaction === 'GET /test-outgoing-fetch'
0 commit comments