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 b4ee023Copy full SHA for b4ee023
packages/hub/test/scope.test.ts
@@ -75,12 +75,12 @@ describe('Scope', () => {
75
expect((scope as any)._breadcrumbs).toHaveLength(5);
76
});
77
78
- test('addBreadcrumb cannot go over MAX_BREADCRUMBS value', () => {
+ test('addBreadcrumb can go over DEFAULT_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);
+ expect((scope as any)._breadcrumbs).toHaveLength(111);
84
85
86
test('setLevel', () => {
0 commit comments