We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4335c23 commit 56808d6Copy full SHA for 56808d6
packages/hub/test/scope.test.ts
@@ -75,14 +75,6 @@ describe('Scope', () => {
75
expect((scope as any)._breadcrumbs).toHaveLength(5);
76
});
77
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
-
86
test('setLevel', () => {
87
const scope = new Scope();
88
scope.setLevel('fatal');
0 commit comments