Skip to content

Commit 56808d6

Browse files
committed
ref(hub): remove breadcrumbs hard cap test
Signed-off-by: Outsider <outsideris@gmail.com>
1 parent 4335c23 commit 56808d6

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

packages/hub/test/scope.test.ts

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -75,14 +75,6 @@ describe('Scope', () => {
7575
expect((scope as any)._breadcrumbs).toHaveLength(5);
7676
});
7777

78-
test('addBreadcrumb cannot go over MAX_BREADCRUMBS value', () => {
79-
const scope = new Scope();
80-
for (let i = 0; i < 111; i++) {
81-
scope.addBreadcrumb({ message: 'test' }, 111);
82-
}
83-
expect((scope as any)._breadcrumbs).toHaveLength(100);
84-
});
85-
8678
test('setLevel', () => {
8779
const scope = new Scope();
8880
scope.setLevel('fatal');

0 commit comments

Comments
 (0)