You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/linked-traces-streamed/consistent-sampling/meta-negative/test.ts
+4-2Lines changed: 4 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -83,12 +83,14 @@ sentryTest.describe('When `consistentTraceSampling` is `true` and page contains
83
83
timestamp: expect.any(Number),
84
84
discarded_events: [
85
85
{
86
-
category: 'transaction',
87
-
quantity: 4,
86
+
category: 'span',
87
+
quantity: expect.any(Number),
88
88
reason: 'sample_rate',
89
89
},
90
90
],
91
91
});
92
+
// exact number depends on performance observer emissions
Copy file name to clipboardExpand all lines: dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/linked-traces-streamed/consistent-sampling/meta-precedence/test.ts
+4-2Lines changed: 4 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -69,12 +69,14 @@ sentryTest.describe('When `consistentTraceSampling` is `true` and page contains
69
69
timestamp: expect.any(Number),
70
70
discarded_events: [
71
71
{
72
-
category: 'transaction',
73
-
quantity: 2,
72
+
category: 'span',
73
+
quantity: expect.any(Number),
74
74
reason: 'sample_rate',
75
75
},
76
76
],
77
77
});
78
+
// exact number depends on performance observer emissions
Copy file name to clipboardExpand all lines: dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/linked-traces-streamed/consistent-sampling/tracesSampler-precedence/test.ts
0 commit comments