Skip to content

Commit 1bc7b09

Browse files
committed
fix tests again
1 parent 65b84fe commit 1bc7b09

3 files changed

Lines changed: 2 additions & 5 deletions

File tree

.size-limit.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ module.exports = [
4848
path: 'packages/browser/build/npm/esm/index.js',
4949
import: createImport('init', 'browserTracingIntegration', 'replayIntegration', 'replayCanvasIntegration'),
5050
gzip: true,
51-
limit: '76 KB',
51+
limit: '77 KB',
5252
},
5353
{
5454
name: '@sentry/browser (incl. Tracing, Replay, Feedback)',

dev-packages/browser-integration-tests/suites/replay/customEvents/test.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ import {
1010
expectedLCPPerformanceSpan,
1111
expectedMemoryPerformanceSpan,
1212
expectedNavigationPerformanceSpan,
13-
expectedTTFBPerformanceSpan,
1413
getExpectedReplayEvent,
1514
} from '../../../utils/replayEventTemplates';
1615
import type { PerformanceSpan } from '../../../utils/replayHelpers';
@@ -66,7 +65,6 @@ sentryTest(
6665
expectedNavigationPerformanceSpan,
6766
expectedLCPPerformanceSpan,
6867
expectedCLSPerformanceSpan,
69-
expectedTTFBPerformanceSpan,
7068
expectedFIDPerformanceSpan,
7169
expectedFPPerformanceSpan,
7270
expectedFCPPerformanceSpan,

dev-packages/browser-integration-tests/suites/replay/multiple-pages/test.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,13 +81,12 @@ sentryTest(
8181
const collectedPerformanceSpans = [...recording0.performanceSpans, ...recording1.performanceSpans];
8282
const collectedBreadcrumbs = [...recording0.breadcrumbs, ...recording1.breadcrumbs];
8383

84-
expect(collectedPerformanceSpans.length).toEqual(9);
84+
expect(collectedPerformanceSpans.length).toEqual(8);
8585
expect(collectedPerformanceSpans).toEqual(
8686
expect.arrayContaining([
8787
expectedNavigationPerformanceSpan,
8888
expectedLCPPerformanceSpan,
8989
expectedCLSPerformanceSpan,
90-
expectedTTFBPerformanceSpan,
9190
expectedFIDPerformanceSpan,
9291
expectedFPPerformanceSpan,
9392
expectedFCPPerformanceSpan,

0 commit comments

Comments
 (0)