@@ -193,7 +193,8 @@ conditionalTest({ min: 16 })('Undici integration', () => {
193
193
undoPatch ( ) ;
194
194
} ) ;
195
195
196
- it ( 'attaches the sentry trace and baggage headers if there is an active span' , async ( ) => {
196
+ // This flakes on CI for some reason: https://github.com/getsentry/sentry-javascript/pull/8449
197
+ it . skip ( 'attaches the sentry trace and baggage headers if there is an active span' , async ( ) => {
197
198
expect . assertions ( 3 ) ;
198
199
199
200
await runWithAsyncContext ( async ( ) => {
@@ -212,7 +213,8 @@ conditionalTest({ min: 16 })('Undici integration', () => {
212
213
} ) ;
213
214
} ) ;
214
215
215
- it ( 'attaches the sentry trace and baggage headers if there is no active span' , async ( ) => {
216
+ // This flakes on CI for some reason: https://github.com/getsentry/sentry-javascript/pull/8449
217
+ it . skip ( 'attaches the sentry trace and baggage headers if there is no active span' , async ( ) => {
216
218
const scope = hub . getScope ( ) ;
217
219
218
220
await fetch ( 'http://localhost:18100' , { method : 'POST' } ) ;
@@ -225,7 +227,8 @@ conditionalTest({ min: 16 })('Undici integration', () => {
225
227
) ;
226
228
} ) ;
227
229
228
- it ( 'attaches headers if `shouldCreateSpanForRequest` does not create a span using propagation context' , async ( ) => {
230
+ // This flakes on CI for some reason: https://github.com/getsentry/sentry-javascript/pull/8449
231
+ it . skip ( 'attaches headers if `shouldCreateSpanForRequest` does not create a span using propagation context' , async ( ) => {
229
232
const transaction = hub . startTransaction ( { name : 'test-transaction' } ) as Transaction ;
230
233
const scope = hub . getScope ( ) ;
231
234
const propagationContext = scope . getPropagationContext ( ) ;
@@ -255,7 +258,8 @@ conditionalTest({ min: 16 })('Undici integration', () => {
255
258
undoPatch ( ) ;
256
259
} ) ;
257
260
258
- it ( 'uses tracePropagationTargets' , async ( ) => {
261
+ // This flakes on CI for some reason: https://github.com/getsentry/sentry-javascript/pull/8449
262
+ it . skip ( 'uses tracePropagationTargets' , async ( ) => {
259
263
const transaction = hub . startTransaction ( { name : 'test-transaction' } ) as Transaction ;
260
264
hub . getScope ( ) . setSpan ( transaction ) ;
261
265
0 commit comments