-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Failing test for incomplete inlined function calls #11101
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
Failing test for incomplete inlined function calls #11101
Conversation
|
1 similar comment
|
|
@@ -0,0 +1 @@ | |||
export const zoom = 15; |
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.
SWC outputs export const zoom = range <= 100 ? 15 : 11;
instead which triggers a ReferenceError
since range
is no longer defined.
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.
It started out hook related but ultimately wasn't. I can't get this test to run locally if I put it in another folder so I left it here.
CodSpeed Performance ReportMerging #11101 will not alter performanceComparing Summary
Footnotes |
a3201c8
to
cb7eb18
Compare
Now passes after #11106 |
Failing test for vercel/next.js#83925