Skip to content

Commit 4a8de28

Browse files
committed
improve meta tag integration test
1 parent b5be6ad commit 4a8de28

File tree

2 files changed

+12
-1
lines changed
  • packages/integration-tests/suites/tracing/browsertracing/meta

2 files changed

+12
-1
lines changed
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import * as Sentry from '@sentry/browser';
2+
import { Integrations } from '@sentry/tracing';
3+
4+
window.Sentry = Sentry;
5+
6+
Sentry.init({
7+
dsn: 'https://[email protected]/1337',
8+
integrations: [new Integrations.BrowserTracing()],
9+
tracesSampleRate: 1,
10+
environment: 'staging',
11+
});

packages/integration-tests/suites/tracing/browsertracing/meta/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ sentryTest(
2222
);
2323

2424
sentryTest(
25-
'should pick up `baggage` <meta> tag and propagate the content in transaction',
25+
'should pick up `baggage` <meta> tag, propagate the content in transaction and not add own data',
2626
async ({ getLocalTestPath, page }) => {
2727
const url = await getLocalTestPath({ testDir: __dirname });
2828

0 commit comments

Comments
 (0)