Skip to content

Commit dd44ae7

Browse files
committed
change test descriptions (node integration tests)
1 parent 8e78e7c commit dd44ae7

File tree

1 file changed

+2
-2
lines changed
  • packages/node-integration-tests/suites/express/sentry-trace/baggage-header-assign

1 file changed

+2
-2
lines changed

packages/node-integration-tests/suites/express/sentry-trace/baggage-header-assign/test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ test('Should assign `baggage` header which contains 3rd party trace baggage data
1919
});
2020
});
2121

22-
test('Should assign `baggage` header which contains sentry trace baggage data to an outgoing request.', async () => {
22+
test('Should not overwrite baggage if the incoming request already has Sentry baggage data.', async () => {
2323
const url = await runServer(__dirname, `${path.resolve(__dirname, '..')}/server.ts`);
2424

2525
const response = (await getAPIResponse(new URL(`${url}/express`), {
@@ -35,7 +35,7 @@ test('Should assign `baggage` header which contains sentry trace baggage data to
3535
});
3636
});
3737

38-
test('Should assign `baggage` header which contains sentry and 3rd party trace baggage data to an outgoing request.', async () => {
38+
test('Should pass along sentry and 3rd party trace baggage data from an incoming to an outgoing request.', async () => {
3939
const url = await runServer(__dirname, `${path.resolve(__dirname, '..')}/server.ts`);
4040

4141
const response = (await getAPIResponse(new URL(`${url}/express`), {

0 commit comments

Comments
 (0)