Skip to content

Commit

Permalink
fix: document can be null, not just undefined (facebook#22695)
Browse files Browse the repository at this point in the history
  • Loading branch information
SimenB authored and zhengjitf committed Apr 15, 2022
1 parent f25930c commit 4c7ce20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/shared/invokeGuardedCallbackImpl.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ if (__DEV__) {
// when we call document.createEvent(). However this can cause confusing
// errors: https://github.com/facebook/create-react-app/issues/3482
// So we preemptively throw with a better message instead.
if (typeof document === 'undefined') {
if (typeof document === 'undefined' || document === null) {
throw new Error(
'The `document` global was defined when React was initialized, but is not ' +
'defined anymore. This can happen in a test environment if a component ' +
Expand Down

0 comments on commit 4c7ce20

Please sign in to comment.