@@ -194,6 +194,7 @@ conditionalTest({ min: 16 })('Undici integration', () => {
194
194
} ) ;
195
195
196
196
// This flakes on CI for some reason: https://github.com/getsentry/sentry-javascript/pull/8449
197
+ // eslint-disable-next-line jest/no-disabled-tests
197
198
it . skip ( 'attaches the sentry trace and baggage headers if there is an active span' , async ( ) => {
198
199
expect . assertions ( 3 ) ;
199
200
@@ -214,6 +215,7 @@ conditionalTest({ min: 16 })('Undici integration', () => {
214
215
} ) ;
215
216
216
217
// This flakes on CI for some reason: https://github.com/getsentry/sentry-javascript/pull/8449
218
+ // eslint-disable-next-line jest/no-disabled-tests
217
219
it . skip ( 'attaches the sentry trace and baggage headers if there is no active span' , async ( ) => {
218
220
const scope = hub . getScope ( ) ;
219
221
@@ -228,6 +230,7 @@ conditionalTest({ min: 16 })('Undici integration', () => {
228
230
} ) ;
229
231
230
232
// This flakes on CI for some reason: https://github.com/getsentry/sentry-javascript/pull/8449
233
+ // eslint-disable-next-line jest/no-disabled-tests
231
234
it . skip ( 'attaches headers if `shouldCreateSpanForRequest` does not create a span using propagation context' , async ( ) => {
232
235
const transaction = hub . startTransaction ( { name : 'test-transaction' } ) as Transaction ;
233
236
const scope = hub . getScope ( ) ;
@@ -259,6 +262,7 @@ conditionalTest({ min: 16 })('Undici integration', () => {
259
262
} ) ;
260
263
261
264
// This flakes on CI for some reason: https://github.com/getsentry/sentry-javascript/pull/8449
265
+ // eslint-disable-next-line jest/no-disabled-tests
262
266
it . skip ( 'uses tracePropagationTargets' , async ( ) => {
263
267
const transaction = hub . startTransaction ( { name : 'test-transaction' } ) as Transaction ;
264
268
hub . getScope ( ) . setSpan ( transaction ) ;
0 commit comments