Skip to content

deps-dev: Bump @playwright/test to ~1.53.2 #16803

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dev-packages/browser-integration-tests/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
},
"dependencies": {
"@babel/preset-typescript": "^7.16.7",
"@playwright/test": "~1.50.0",
"@playwright/test": "~1.53.2",
"@sentry-internal/rrweb": "2.34.0",
"@sentry/browser": "9.34.0",
"@supabase/supabase-js": "2.49.3",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,4 @@ window.Sentry = Sentry;

Sentry.init({
dsn: 'https://public@dsn.ingest.sentry.io/1337',
transportOptions: {
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

these are no longer needed because this was fixed in a playwright update

fetchOptions: {
// See: https://github.com/microsoft/playwright/issues/34497
keepalive: false,
},
},
});
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,4 @@ window.Sentry = Sentry;

Sentry.init({
dsn: 'https://public@dsn.ingest.sentry.io/1337',
transportOptions: {
fetchOptions: {
// See: https://github.com/microsoft/playwright/issues/34497
keepalive: false,
},
},
});
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,4 @@ Sentry.init({
}),
],
tracesSampleRate: 1,
transportOptions: {
fetchOptions: {
// See: https://github.com/microsoft/playwright/issues/34497
keepalive: false,
},
},
});
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,4 @@ Sentry.init({
}),
],
tracesSampleRate: 1,
transportOptions: {
fetchOptions: {
// See: https://github.com/microsoft/playwright/issues/34497
keepalive: false,
},
},
});
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Sentry.init({
consistentTraceSampling: true,
}),
],
tracePropagationTargets: ['someurl.com'],
tracePropagationTargets: ['sentry-test-external.io'],
tracesSampler: ctx => {
if (ctx.attributes && ctx.attributes['sentry.origin'] === 'auto.pageload.browser') {
return 1;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ btn1.addEventListener('click', () => {
btn2.addEventListener('click', () => {
Sentry.startNewTrace(() => {
Sentry.startSpan({ name: 'custom root span 2', op: 'custom' }, async () => {
await fetch('https://someUrl.com');
await fetch('http://sentry-test-external.io');
});
});
});
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ sentryTest.describe('When `consistentTraceSampling` is `true`', () => {

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

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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Sentry.init({
consistentTraceSampling: true,
}),
],
tracePropagationTargets: ['someurl.com'],
tracePropagationTargets: ['sentry-test-external.io'],
tracesSampleRate: 1,
debug: true,
sendClientReports: true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ btn1.addEventListener('click', () => {
btn2.addEventListener('click', () => {
Sentry.startNewTrace(() => {
Sentry.startSpan({ name: 'custom root span 2', op: 'custom' }, async () => {
await fetch('https://someUrl.com');
await fetch('http://sentry-test-external.io');
});
});
});
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ sentryTest.describe('When `consistentTraceSampling` is `true` and page contains
});

await sentryTest.step('Make fetch request', async () => {
const tracingHeadersPromise = waitForTracingHeadersOnUrl(page, 'https://someUrl.com');
const tracingHeadersPromise = waitForTracingHeadersOnUrl(page, 'http://sentry-test-external.io');

await page.locator('#btn2').click();
const { baggage, sentryTrace } = await tracingHeadersPromise;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Sentry.init({
consistentTraceSampling: true,
}),
],
tracePropagationTargets: ['someurl.com'],
tracePropagationTargets: ['sentry-test-external.io'],
tracesSampler: ({ inheritOrSampleWith }) => {
return inheritOrSampleWith(0);
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ btn1?.addEventListener('click', () => {
btn2?.addEventListener('click', () => {
Sentry.startNewTrace(() => {
Sentry.startSpan({ name: 'custom root span 2', op: 'custom' }, async () => {
await fetch('https://someUrl.com');
await fetch('http://sentry-test-external.io');
});
});
});
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ sentryTest.describe('When `consistentTraceSampling` is `true` and page contains
sentryTest.skip();
}




const url = await getLocalTestUrl({ testDir: __dirname });

const clientReportPromise = waitForClientReportRequest(page);
Expand All @@ -34,7 +37,7 @@ sentryTest.describe('When `consistentTraceSampling` is `true` and page contains
});

await sentryTest.step('Make fetch request', async () => {
const tracingHeadersPromise = waitForTracingHeadersOnUrl(page, 'https://someUrl.com');
const tracingHeadersPromise = waitForTracingHeadersOnUrl(page, 'http://sentry-test-external.io');

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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Sentry.init({
consistentTraceSampling: true,
}),
],
tracePropagationTargets: ['someurl.com'],
tracePropagationTargets: ['sentry-test-external.io'],
// only take into account sampling from meta tag; otherwise sample negatively
tracesSampleRate: 0,
debug: true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ btn1.addEventListener('click', () => {
btn2.addEventListener('click', () => {
Sentry.startNewTrace(() => {
Sentry.startSpan({ name: 'custom root span 2', op: 'custom' }, async () => {
await fetch('https://someUrl.com');
await fetch('http://sentry-test-external.io');
});
});
});
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ sentryTest.describe('When `consistentTraceSampling` is `true` and page contains

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

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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Sentry.init({
enableInp: false,
}),
],
tracePropagationTargets: ['someurl.com'],
tracePropagationTargets: ['sentry-test-external.io'],
tracesSampler: ctx => {
if (ctx.attributes && ctx.attributes['sentry.origin'] === 'auto.pageload.browser') {
return 1;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ btn1.addEventListener('click', () => {
btn2.addEventListener('click', () => {
Sentry.startNewTrace(() => {
Sentry.startSpan({ name: 'custom root span 2', op: 'custom' }, async () => {
await fetch('https://someUrl.com');
await fetch('http://sentry-test-external.io');
});
});
});
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"zone.js": "~0.14.3"
},
"devDependencies": {
"@playwright/test": "~1.50.0",
"@playwright/test": "~1.53.2",
"@sentry-internal/test-utils": "link:../../../test-utils",
"@angular-devkit/build-angular": "^17.1.1",
"@angular/cli": "^17.1.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"zone.js": "~0.14.3"
},
"devDependencies": {
"@playwright/test": "~1.50.0",
"@playwright/test": "~1.53.2",
"@sentry-internal/test-utils": "link:../../../test-utils",
"@angular-devkit/build-angular": "^18.0.0",
"@angular/cli": "^18.0.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"@angular-devkit/build-angular": "^19.0.0",
"@angular/cli": "^19.0.0",
"@angular/compiler-cli": "^19.0.0",
"@playwright/test": "~1.50.0",
"@playwright/test": "~1.53.2",
"@sentry-internal/test-utils": "link:../../../test-utils",
"@types/jasmine": "~5.1.0",
"http-server": "^14.1.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"@angular-devkit/build-angular": "^20.0.0",
"@angular/cli": "^20.0.0",
"@angular/compiler-cli": "^20.0.0",
"@playwright/test": "~1.50.0",
"@playwright/test": "~1.53.2",
"@sentry-internal/test-utils": "link:../../../test-utils",
"@types/jasmine": "~5.1.0",
"http-server": "^14.1.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"dependencies": {
"@astrojs/check": "0.9.2",
"@astrojs/node": "8.3.4",
"@playwright/test": "~1.50.0",
"@playwright/test": "~1.53.2",
"@sentry/astro": "* || latest",
"@sentry-internal/test-utils": "link:../../../test-utils",
"@spotlightjs/astro": "2.1.6",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"dependencies": {
"@astrojs/internal-helpers": "^0.4.2",
"@astrojs/node": "^9.0.0",
"@playwright/test": "~1.50.0",
"@playwright/test": "~1.53.2",
"@sentry-internal/test-utils": "link:../../../test-utils",
"@sentry/astro": "latest || *",
"astro": "^5.0.3"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
},
"devDependencies": {
"@sentry-internal/test-utils": "link:../../../test-utils",
"@playwright/test": "~1.50.0"
"@playwright/test": "~1.53.2"
},
"volta": {
"extends": "../../package.json"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
},
"devDependencies": {
"@sentry-internal/test-utils": "link:../../../test-utils",
"@playwright/test": "~1.50.0"
"@playwright/test": "~1.53.2"
},
"volta": {
"extends": "../../package.json"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"typescript": "~5.0.0"
},
"devDependencies": {
"@playwright/test": "~1.50.0",
"@playwright/test": "~1.53.2",
"@sentry-internal/test-utils": "link:../../../test-utils"
},
"volta": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"react-dom": "^18.2.0"
},
"devDependencies": {
"@playwright/test": "~1.50.0",
"@playwright/test": "~1.53.2",
"@sentry-internal/test-utils": "link:../../../test-utils",
"@remix-run/dev": "^2.7.2",
"@sentry/core": "latest || *",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"source-map-support": "^0.5.21"
},
"devDependencies": {
"@playwright/test": "~1.50.0",
"@playwright/test": "~1.53.2",
"@sentry-internal/test-utils": "link:../../../test-utils",
"@remix-run/dev": "^2.7.2",
"@sentry/core": "latest || *",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"react-dom": "^18.2.0"
},
"devDependencies": {
"@playwright/test": "~1.50.0",
"@playwright/test": "~1.53.2",
"@sentry-internal/test-utils": "link:../../../test-utils",
"@remix-run/dev": "2.16.7",
"@remix-run/eslint-config": "2.16.7",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
]
},
"devDependencies": {
"@playwright/test": "~1.50.0",
"@playwright/test": "~1.53.2",
"@sentry-internal/test-utils": "link:../../../test-utils",
"webpack": "^5.91.0",
"serve": "14.0.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"@ember/optional-features": "~2.0.0",
"@glimmer/component": "~1.1.2",
"@glimmer/tracking": "~1.1.2",
"@playwright/test": "~1.50.0",
"@playwright/test": "~1.53.2",
"@ember/string": "~3.1.1",
"@sentry-internal/test-utils": "link:../../../test-utils",
"@sentry/ember": "latest || *",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
"loader.js": "^4.7.0",
"tracked-built-ins": "^3.3.0",
"webpack": "^5.91.0",
"@playwright/test": "~1.50.0",
"@playwright/test": "~1.53.2",
"@sentry/ember": "latest || *",
"@sentry-internal/test-utils": "link:../../../test-utils",
"@tsconfig/ember": "^3.0.6",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"rxjs": "^7.8.1"
},
"devDependencies": {
"@playwright/test": "^1.44.1",
"@playwright/test": "~1.53.2",
"@sentry-internal/test-utils": "link:../../../test-utils",
"@nestjs/cli": "^11.0.0",
"@nestjs/schematics": "^11.0.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"rxjs": "^7.8.1"
},
"devDependencies": {
"@playwright/test": "~1.50.0",
"@playwright/test": "~1.53.2",
"@sentry-internal/test-utils": "link:../../../test-utils",
"@nestjs/cli": "^10.0.0",
"@nestjs/schematics": "^10.0.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"rxjs": "^7.8.1"
},
"devDependencies": {
"@playwright/test": "~1.50.0",
"@playwright/test": "~1.53.2",
"@sentry-internal/test-utils": "link:../../../test-utils",
"@nestjs/cli": "^10.0.0",
"@nestjs/schematics": "^10.0.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"rxjs": "^7.8.1"
},
"devDependencies": {
"@playwright/test": "~1.50.0",
"@playwright/test": "~1.53.2",
"@sentry-internal/test-utils": "link:../../../test-utils",
"@nestjs/cli": "^10.0.0",
"@nestjs/schematics": "^10.0.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"rxjs": "^7.8.1"
},
"devDependencies": {
"@playwright/test": "~1.50.0",
"@playwright/test": "~1.53.2",
"@sentry-internal/test-utils": "link:../../../test-utils",
"@nestjs/cli": "^10.0.0",
"@nestjs/schematics": "^10.0.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"fastify": "^4.28.1"
},
"devDependencies": {
"@playwright/test": "~1.50.0",
"@playwright/test": "~1.53.2",
"@sentry-internal/test-utils": "link:../../../test-utils",
"@nestjs/cli": "^10.0.0",
"@nestjs/schematics": "^10.0.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"rxjs": "^7.8.1"
},
"devDependencies": {
"@playwright/test": "~1.50.0",
"@playwright/test": "~1.53.2",
"@sentry-internal/test-utils": "link:../../../test-utils",
"@nestjs/cli": "^10.0.0",
"@nestjs/schematics": "^10.0.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"rxjs": "^7.8.1"
},
"devDependencies": {
"@playwright/test": "~1.50.0",
"@playwright/test": "~1.53.2",
"@sentry-internal/test-utils": "link:../../../test-utils",
"@nestjs/cli": "^10.0.0",
"@nestjs/schematics": "^10.0.0",
Expand Down
Loading
Loading