Skip to content

Commit af3dd18

Browse files
committed
try this instead
1 parent d195211 commit af3dd18

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

packages/remix/test/integration/app_v1/entry.client.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { useEffect } from 'react';
55

66
Sentry.init({
77
dsn: 'https://[email protected]/1337',
8-
tracesSampler: () => true,
8+
tracesSampleRate: 1,
99
integrations: [
1010
new Sentry.BrowserTracing({
1111
routingInstrumentation: Sentry.remixRouterInstrumentation(useEffect, useLocation, useMatches),

packages/remix/test/integration/app_v1/entry.server.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import * as Sentry from '@sentry/remix';
66
Sentry.init({
77
dsn: 'https://[email protected]/1337',
88
tracesSampleRate: 1,
9-
tracePropagationTargets: [/^(?!.*routes).*$/],
9+
tracePropagationTargets: [/^(?!.*^\/).*$/],
1010
// Disabling to test series of envelopes deterministically.
1111
autoSessionTracking: false,
1212
});

packages/remix/test/integration/app_v2/entry.server.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import * as Sentry from '@sentry/remix';
66
Sentry.init({
77
dsn: 'https://[email protected]/1337',
88
tracesSampleRate: 1,
9-
tracePropagationTargets: [/^(?!.*routes).*$/],
9+
tracePropagationTargets: [/^(?!.*^\/).*$/],
1010
// Disabling to test series of envelopes deterministically.
1111
autoSessionTracking: false,
1212
});

0 commit comments

Comments
 (0)