Skip to content

Commit 0df39c6

Browse files
authored
deps-dev: Bump @playwright/test to ~1.53.2 (#16803)
Updates this so we get newest browsers etc. Also aligns version everywhere again.
1 parent ca28a7b commit 0df39c6

File tree

111 files changed

+124
-145
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

111 files changed

+124
-145
lines changed

dev-packages/browser-integration-tests/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"dependencies": {
4242
"@babel/core": "^7.27.7",
4343
"@babel/preset-typescript": "^7.16.7",
44-
"@playwright/test": "~1.50.0",
44+
"@playwright/test": "~1.53.2",
4545
"@sentry-internal/rrweb": "2.34.0",
4646
"@sentry/browser": "9.36.0",
4747
"@supabase/supabase-js": "2.49.3",

dev-packages/browser-integration-tests/suites/errors/fetch/init.js

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,4 @@ window.Sentry = Sentry;
44

55
Sentry.init({
66
dsn: 'https://public@dsn.ingest.sentry.io/1337',
7-
transportOptions: {
8-
fetchOptions: {
9-
// See: https://github.com/microsoft/playwright/issues/34497
10-
keepalive: false,
11-
},
12-
},
137
});

dev-packages/browser-integration-tests/suites/stacktraces/init.js

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,4 @@ window.Sentry = Sentry;
44

55
Sentry.init({
66
dsn: 'https://public@dsn.ingest.sentry.io/1337',
7-
transportOptions: {
8-
fetchOptions: {
9-
// See: https://github.com/microsoft/playwright/issues/34497
10-
keepalive: false,
11-
},
12-
},
137
});

dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/http-timings/init.js

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,4 @@ Sentry.init({
1313
}),
1414
],
1515
tracesSampleRate: 1,
16-
transportOptions: {
17-
fetchOptions: {
18-
// See: https://github.com/microsoft/playwright/issues/34497
19-
keepalive: false,
20-
},
21-
},
2216
});

dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/interactions/init.js

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,4 @@ Sentry.init({
1414
}),
1515
],
1616
tracesSampleRate: 1,
17-
transportOptions: {
18-
fetchOptions: {
19-
// See: https://github.com/microsoft/playwright/issues/34497
20-
keepalive: false,
21-
},
22-
},
2317
});

dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/linked-traces/consistent-sampling/default/init.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Sentry.init({
1010
consistentTraceSampling: true,
1111
}),
1212
],
13-
tracePropagationTargets: ['someurl.com'],
13+
tracePropagationTargets: ['sentry-test-external.io'],
1414
tracesSampler: ctx => {
1515
if (ctx.attributes && ctx.attributes['sentry.origin'] === 'auto.pageload.browser') {
1616
return 1;

dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/linked-traces/consistent-sampling/default/subject.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ btn1.addEventListener('click', () => {
1111
btn2.addEventListener('click', () => {
1212
Sentry.startNewTrace(() => {
1313
Sentry.startSpan({ name: 'custom root span 2', op: 'custom' }, async () => {
14-
await fetch('https://someUrl.com');
14+
await fetch('http://sentry-test-external.io');
1515
});
1616
});
1717
});

dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/linked-traces/consistent-sampling/default/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ sentryTest.describe('When `consistentTraceSampling` is `true`', () => {
111111

112112
await sentryTest.step('Make fetch request', async () => {
113113
const fetchTracePromise = waitForTransactionRequest(page, evt => evt.contexts?.trace?.op === 'custom');
114-
const tracingHeadersPromise = waitForTracingHeadersOnUrl(page, 'https://someUrl.com');
114+
const tracingHeadersPromise = waitForTracingHeadersOnUrl(page, 'http://sentry-test-external.io');
115115

116116
await page.locator('#btn2').click();
117117

dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/linked-traces/consistent-sampling/meta-negative/init.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Sentry.init({
1010
consistentTraceSampling: true,
1111
}),
1212
],
13-
tracePropagationTargets: ['someurl.com'],
13+
tracePropagationTargets: ['sentry-test-external.io'],
1414
tracesSampleRate: 1,
1515
debug: true,
1616
sendClientReports: true,

dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/linked-traces/consistent-sampling/meta-negative/subject.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ btn1.addEventListener('click', () => {
1111
btn2.addEventListener('click', () => {
1212
Sentry.startNewTrace(() => {
1313
Sentry.startSpan({ name: 'custom root span 2', op: 'custom' }, async () => {
14-
await fetch('https://someUrl.com');
14+
await fetch('http://sentry-test-external.io');
1515
});
1616
});
1717
});

0 commit comments

Comments
 (0)