Skip to content

Commit a88531f

Browse files
committed
add trace lifetime tests
1 parent 78a746f commit a88531f

File tree

9 files changed

+657
-82
lines changed

9 files changed

+657
-82
lines changed

dev-packages/browser-integration-tests/results.junit.xml

Lines changed: 0 additions & 82 deletions
This file was deleted.
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
import * as Sentry from '@sentry/browser';
2+
// Import this separately so that generatePlugin can handle it for CDN scenarios
3+
import { feedbackIntegration } from '@sentry/browser';
4+
5+
window.Sentry = Sentry;
6+
7+
Sentry.init({
8+
dsn: 'https://public@dsn.ingest.sentry.io/1337',
9+
integrations: [Sentry.browserTracingIntegration(), feedbackIntegration(), Sentry.spanStreamingIntegration()],
10+
tracePropagationTargets: ['http://sentry-test-site.example'],
11+
tracesSampleRate: 1,
12+
});

0 commit comments

Comments
 (0)