-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
fix: Uncaught Error: document is not defined for SSR (#7926) #7927
base: main
Are you sure you want to change the base?
Conversation
Thanks for the PR, excited to have better in-test support for this issue so we catch it earlier. Can you sign the CLA? https://react-spectrum.adobe.com/contribute.html#contributor-license-agreement It looks like the ssr tests are failing for React 16 and 17, we'll need to fix those as well. Thanks again! |
I have now signed the CLA. Thank you for your reply. I am looking forward for this to be merged. |
Please let me know if there is anything else I can help out with. |
Just the tests for 16/17 that need some debugging as well if you have time. Thank you! |
I can have a look at it. But one question. How do I trigger the tests for 16 and 17 correctly locally? |
Sure, you run them by installing the dependencies for that react version and then just run the tests as normal.
|
I have been able to run the tests locally but I have not jet figure out whats wrong. The only thing I am sure off is that it is only one test that fail each run and that it is different tests each time. Any idea of where I can continue to look? |
Because it's saying
We must be getting past some check we had on We may need to leave the ssr tests alone and instead, eventually, create a different ssr test suite which runs in an environment with window and whatever functions environments like Deno attach to said window object. I think a blank object isn't going to be quite right, just a guess though. For now, you can remove the change in the test file. Thank you! |
Fix error when window is set but document is undefined when running SSR.
I have updated the PR and removed the changes in ssrWorker.js and now only have the fix. |
Hi, me and my team want to know when this can be approved and merged into a new version of the package in order for us to get it to our code and be able to go to fix our SSR problem in production? I see that we have one approve but it seems like we need one more? Anything more that I can do to help out? Thanks in advance |
Thanks for the bump, nothing to be done right now. We're moving a little slowly this week. If you need something to hold you over while you wait for this to get a second reviewer and 🤞🏻 approval, I suggest using a tool like "patch-package" to insert this code as a patch in your project. |
Fix error when window is set but document is undefined when running SSR.
Closes #7926
✅ Pull Request Checklist:
📝 Test Instructions:
Add window = {} in the ssrWorker.js file (see image)

Run
yarn test:ssr
and verify that everything works even with the window added in the SSRWorker.Try to undo the change in useFocusVisible.ts and verify that most of the SSR tests crashes with the error
Uncaught Error: document is not defined
.This test only works for latest react. And will be crashing the test suite for react 16 and 17. Therefore I have not modified the test permanently.
🧢 Your Project: