-
-
Notifications
You must be signed in to change notification settings - Fork 5k
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
Throw error when component is undefined or null (#2038) #2041
base: dev
Are you sure you want to change the base?
Conversation
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.
I simplified the condition but you still need to add more checks because, the component option can actually be absent if other options are present (like redirect
)
Oh sorry I missed that. Will try to work on that. |
Keep in mind you can run the tests locally too, it will save you some time 😄 |
Just now, I've tried to trace through what might be throwing error when it shouldn't. Then I found in You might want to review it again. Anyway thanks for the guide. |
maps = createRouteMap([{ path: '/' }]) | ||
expect(console.warn).toHaveBeenCalled() | ||
}) | ||
|
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.
I would create an spec similar to this one, but to test that this is not affecting production env, with not.toHaveBeenCalled
👍
Add assertion when a route component is null or undefined, a fix for issue #2038.
Really appreciate for a review.