From 10b55fc0a7e24f6101251afa11eeabf8619e8834 Mon Sep 17 00:00:00 2001 From: Charly Gomez Date: Tue, 4 Aug 2026 11:36:38 +0200 Subject: [PATCH] test(e2e): Add missing `@sentry/core` dep to nextjs-16-userfeedback `tests/feedback.test.ts` imports `FeedbackEvent` from `@sentry/core`, which the app never declared. It resolved only via the monorepo root symlink, so it broke once CI copied the app out of tree, and Next 16.3 surfaced it by no longer filtering diagnostics in test files. Co-Authored-By: Claude Opus 5 (1M context) --- .../test-applications/nextjs-16-userfeedback/package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/dev-packages/e2e-tests/test-applications/nextjs-16-userfeedback/package.json b/dev-packages/e2e-tests/test-applications/nextjs-16-userfeedback/package.json index b30636cd3576..d77e4cd57286 100644 --- a/dev-packages/e2e-tests/test-applications/nextjs-16-userfeedback/package.json +++ b/dev-packages/e2e-tests/test-applications/nextjs-16-userfeedback/package.json @@ -11,6 +11,7 @@ "test:assert": "pnpm test:prod" }, "dependencies": { + "@sentry/core": "file:../../packed/sentry-core-packed.tgz", "@sentry/nextjs": "file:../../packed/sentry-nextjs-packed.tgz", "@types/node": "^20", "@types/react": "^19",