Skip to content

Commit dd2dffb

Browse files
committed
disable rule in skipped undici tests
1 parent 771b695 commit dd2dffb

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

packages/node/test/integrations/undici.test.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -194,6 +194,7 @@ conditionalTest({ min: 16 })('Undici integration', () => {
194194
});
195195

196196
// This flakes on CI for some reason: https://github.com/getsentry/sentry-javascript/pull/8449
197+
// eslint-disable-next-line jest/no-disabled-tests
197198
it.skip('attaches the sentry trace and baggage headers if there is an active span', async () => {
198199
expect.assertions(3);
199200

@@ -214,6 +215,7 @@ conditionalTest({ min: 16 })('Undici integration', () => {
214215
});
215216

216217
// This flakes on CI for some reason: https://github.com/getsentry/sentry-javascript/pull/8449
218+
// eslint-disable-next-line jest/no-disabled-tests
217219
it.skip('attaches the sentry trace and baggage headers if there is no active span', async () => {
218220
const scope = hub.getScope();
219221

@@ -228,6 +230,7 @@ conditionalTest({ min: 16 })('Undici integration', () => {
228230
});
229231

230232
// This flakes on CI for some reason: https://github.com/getsentry/sentry-javascript/pull/8449
233+
// eslint-disable-next-line jest/no-disabled-tests
231234
it.skip('attaches headers if `shouldCreateSpanForRequest` does not create a span using propagation context', async () => {
232235
const transaction = hub.startTransaction({ name: 'test-transaction' }) as Transaction;
233236
const scope = hub.getScope();
@@ -259,6 +262,7 @@ conditionalTest({ min: 16 })('Undici integration', () => {
259262
});
260263

261264
// This flakes on CI for some reason: https://github.com/getsentry/sentry-javascript/pull/8449
265+
// eslint-disable-next-line jest/no-disabled-tests
262266
it.skip('uses tracePropagationTargets', async () => {
263267
const transaction = hub.startTransaction({ name: 'test-transaction' }) as Transaction;
264268
hub.getScope().setSpan(transaction);

0 commit comments

Comments
 (0)