-
Notifications
You must be signed in to change notification settings - Fork 27k
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
disable test case for Turbopack #50530
Conversation
({ next, isNextDev, isNextStart }) => { | ||
if (isNextDev) { | ||
({ next, isNextDev, isNextStart, isTurbopack }) => { | ||
if (isNextDev && !isTurbopack) { | ||
it('should have correct client references keys in manifest', async () => { |
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.
Turbopack doesn't create this file
Failing test suitesCommit: efe5e58
Expand output● tsconfig-path-reloading › tsconfig › should recover from module not found when paths is updated
● tsconfig-path-reloading › tsconfig added after starting dev › should recover from module not found when paths is updated
Read more about building and testing Next.js in contributing.md. |
### What? This test case was never passing and accidentally enabled for Turbopack. We could disable the whole test suite, but since only one test case is affected we can also disable only that one.
What?
This test case was never passing and accidentally enabled for Turbopack.
We could disable the whole test suite, but since only one test case is affected we can also disable only that one.