Skip to content

Commit c7ab458

Browse files
committed
fix: increased test cases timeout to make it more stable
1 parent 4941a34 commit c7ab458

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

Diff for: packages/tracing/tests/e2e/tracer.test.ts

+8-8
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ describe('Tracer integration tests', () => {
215215
}
216216
}
217217

218-
}, ONE_MINUTE * 2);
218+
}, ONE_MINUTE * 3);
219219

220220
it('Verifies that a when Tracer is used as middleware all custom traces are generated with correct annotations and metadata', async () => {
221221

@@ -285,7 +285,7 @@ describe('Tracer integration tests', () => {
285285
}
286286
}
287287

288-
}, ONE_MINUTE * 2);
288+
}, ONE_MINUTE * 3);
289289

290290
it('Verifies that a when Tracer is used as middleware, with errors & response capturing disabled, all custom traces are generated with correct annotations', async () => {
291291

@@ -354,7 +354,7 @@ describe('Tracer integration tests', () => {
354354
}
355355
}
356356

357-
}, ONE_MINUTE * 2);
357+
}, ONE_MINUTE * 3);
358358

359359
it('Verifies that a when tracing is disabled in middleware mode no custom traces are generated', async () => {
360360

@@ -378,7 +378,7 @@ describe('Tracer integration tests', () => {
378378
}
379379
}
380380

381-
}, ONE_MINUTE * 2);
381+
}, ONE_MINUTE * 3);
382382

383383
it('Verifies that a when Tracer is used as decorator all custom traces are generated with correct annotations and metadata', async () => {
384384

@@ -475,7 +475,7 @@ describe('Tracer integration tests', () => {
475475
}
476476
}
477477

478-
}, ONE_MINUTE * 2);
478+
}, ONE_MINUTE * 3);
479479

480480
it('Verifies that a when Tracer is used as decorator on an async handler all custom traces are generated with correct annotations and metadata', async () => {
481481

@@ -572,7 +572,7 @@ describe('Tracer integration tests', () => {
572572
}
573573
}
574574

575-
}, ONE_MINUTE * 2);
575+
}, ONE_MINUTE * 3);
576576

577577
it('Verifies that a when Tracer is used as decorator, with errors & response capturing disabled, all custom traces are generated with correct annotations', async () => {
578578

@@ -658,7 +658,7 @@ describe('Tracer integration tests', () => {
658658
}
659659
}
660660

661-
}, ONE_MINUTE * 2);
661+
}, ONE_MINUTE * 3);
662662

663663
it('Verifies that a when tracing is disabled in decorator mode no custom traces are generated', async () => {
664664

@@ -682,6 +682,6 @@ describe('Tracer integration tests', () => {
682682
}
683683
}
684684

685-
}, ONE_MINUTE * 2);
685+
}, ONE_MINUTE * 3);
686686

687687
});

0 commit comments

Comments
 (0)