-
Notifications
You must be signed in to change notification settings - Fork 651
test: Add React 18 to test matrix #771
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
Changes from all commits
c2d5818
56d5eef
bcdcbbb
870eba0
8a36e9e
c1437f1
8ac97da
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -106,6 +106,9 @@ describe('SwitchTransition', () => { | |
act(() => { | ||
jest.runAllTimers(); | ||
}); | ||
act(() => { | ||
jest.runAllTimers(); | ||
}); | ||
Comment on lines
+109
to
+111
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why is this call added? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Let me check. I think it was due to previous tests relying on implementation details related to React scheduling timings. Will check what specifically was happening. |
||
expect(log).toEqual([ | ||
'exit', | ||
'exiting', | ||
|
@@ -137,6 +140,9 @@ describe('SwitchTransition', () => { | |
act(() => { | ||
jest.runAllTimers(); | ||
}); | ||
act(() => { | ||
jest.runAllTimers(); | ||
}); | ||
expect(log).toEqual([ | ||
'enter', | ||
'entering', | ||
|
Uh oh!
There was an error while loading. Please reload this page.