-
Notifications
You must be signed in to change notification settings - Fork 29.9k
[test] Remove unused next.config.js in nonce-head-manager #84073
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
Merged
eps1lon
merged 1 commit into
canary
from
sebbie/09-22-_test_remove_unused_next.config.js_in_nonce-head-manager
Sep 22, 2025
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The test is no longer actually testing CSP (Content Security Policy) functionality because the required
next.config.jsfile that sets up CSP headers for the/csproute was deleted.View Details
📝 Patch Details
Analysis
CSP test in nonce-head-manager no longer validates CSP functionality
What fails: The
/csproute test intest/e2e/nonce-head-manager/index.test.tsno longer receives Content-Security-Policy headers, making it functionally identical to the/route testHow to reproduce:
Result: Both test scenarios (route
/and route/csp) now have identical behavior with no CSP headers, but test title claims "should not re-execute the script when re-rendering with CSP header"Expected: The
/csproute should receive CSP headerscript-src-elem 'nonce-abc123' 'unsafe-eval'to validate nonce-based script execution under CSP constraints per CSP script-src-elem specificationRoot cause: Commit db3e559 removed both the
next.config.jsfile andnextConfigreference fromcreateNext()call, eliminating CSP header configuration for the testUh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The file wasn't actually used. If it were, we would expect test failures now that we removed it.
nextConfigtakes a partial Next.js config not a file reference.