Skip to content

Commit 420b283

Browse files
committed
fix integration tests and size limit
1 parent c74fa24 commit 420b283

5 files changed

Lines changed: 53 additions & 5 deletions

File tree

.size-limit.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -241,14 +241,14 @@ module.exports = [
241241
path: createCDNPath('bundle.min.js'),
242242
gzip: false,
243243
brotli: false,
244-
limit: '83.5 KB',
244+
limit: '84 KB',
245245
},
246246
{
247247
name: 'CDN Bundle (incl. Tracing) - uncompressed',
248248
path: createCDNPath('bundle.tracing.min.js'),
249249
gzip: false,
250250
brotli: false,
251-
limit: '134 KB',
251+
limit: '135 KB',
252252
},
253253
{
254254
name: 'CDN Bundle (incl. Logs, Metrics) - uncompressed',
@@ -269,14 +269,14 @@ module.exports = [
269269
path: createCDNPath('bundle.replay.logs.metrics.min.js'),
270270
gzip: false,
271271
brotli: false,
272-
limit: '211 KB',
272+
limit: '212 KB',
273273
},
274274
{
275275
name: 'CDN Bundle (incl. Tracing, Replay) - uncompressed',
276276
path: createCDNPath('bundle.tracing.replay.min.js'),
277277
gzip: false,
278278
brotli: false,
279-
limit: '251 KB',
279+
limit: '252 KB',
280280
},
281281
{
282282
name: 'CDN Bundle (incl. Tracing, Replay, Logs, Metrics) - uncompressed',
@@ -290,7 +290,7 @@ module.exports = [
290290
path: createCDNPath('bundle.tracing.replay.feedback.min.js'),
291291
gzip: false,
292292
brotli: false,
293-
limit: '264 KB',
293+
limit: '265 KB',
294294
},
295295
{
296296
name: 'CDN Bundle (incl. Tracing, Replay, Feedback, Logs, Metrics) - uncompressed',

dev-packages/browser-integration-tests/suites/public-api/startSpan/streamed/test.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,18 @@ sentryTest(
167167
},
168168
{
169169
attributes: {
170+
'culture.calendar': {
171+
type: 'string',
172+
value: expect.any(String),
173+
},
174+
'culture.locale': {
175+
type: 'string',
176+
value: expect.any(String),
177+
},
178+
'culture.timezone': {
179+
type: 'string',
180+
value: expect.any(String),
181+
},
170182
[SEMANTIC_ATTRIBUTE_SENTRY_OP]: {
171183
type: 'string',
172184
value: 'test',

dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/interactions-streamed/test.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,18 @@ sentryTest('captures streamed interaction span tree. @firefox', async ({ browser
4040

4141
expect(interactionSegmentSpan).toEqual({
4242
attributes: {
43+
'culture.calendar': {
44+
type: 'string',
45+
value: expect.any(String),
46+
},
47+
'culture.locale': {
48+
type: 'string',
49+
value: expect.any(String),
50+
},
51+
'culture.timezone': {
52+
type: 'string',
53+
value: expect.any(String),
54+
},
4355
[SEMANTIC_ATTRIBUTE_SENTRY_IDLE_SPAN_FINISH_REASON]: {
4456
type: 'string',
4557
value: 'idleTimeout',

dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/navigation-streamed/test.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,18 @@ sentryTest('starts a streamed navigation span on page navigation', async ({ getL
6969

7070
expect(navigationSpan).toEqual({
7171
attributes: {
72+
'culture.calendar': {
73+
type: 'string',
74+
value: expect.any(String),
75+
},
76+
'culture.locale': {
77+
type: 'string',
78+
value: expect.any(String),
79+
},
80+
'culture.timezone': {
81+
type: 'string',
82+
value: expect.any(String),
83+
},
7284
'network.connection.effective_type': {
7385
type: 'string',
7486
value: expect.any(String),

dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/pageload-streamed/test.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,18 @@ sentryTest(
6262

6363
expect(pageloadSpan).toEqual({
6464
attributes: {
65+
'culture.calendar': {
66+
type: 'string',
67+
value: expect.any(String),
68+
},
69+
'culture.locale': {
70+
type: 'string',
71+
value: expect.any(String),
72+
},
73+
'culture.timezone': {
74+
type: 'string',
75+
value: expect.any(String),
76+
},
6577
// formerly known as 'effectiveConnectionType'
6678
'network.connection.effective_type': {
6779
type: 'string',

0 commit comments

Comments
 (0)