[code-infra] Optimize @testing-library/user-event#43804
[code-infra] Optimize @testing-library/user-event#43804Janpot wants to merge 3 commits intomui:masterfrom
@testing-library/user-event#43804Conversation
@testing-library/user-event
Netlify deploy previewhttps://deploy-preview-43804--material-ui.netlify.app/ Bundle size report
|
| const result: MuiRenderResult = { | ||
| ...testingLibraryRenderResult, | ||
| user: userEvent.setup(), | ||
| user: userEvent.setup({ delay: null }), |
There was a problem hiding this comment.
Going off topic, but would this works instead?
| user: userEvent.setup({ delay: null }), | |
| export const userEventInstance = userEvent.setup({ delay: null }); |
There was a problem hiding this comment.
I think you want to initialize it per test. At least that's seems to be recommended on their docs. I understand the instance hold state and you can avoid interference between parallel tests this way.
We discourage rendering or using any userEvent functions outside of the test itself - e.g. in a before/after hook
There was a problem hiding this comment.
This is what I'm not clear about. In the source, I didn't see logic that required it to be initialized once for all the tests, this would save CI time for each test and make the DX simpler as well.
There was a problem hiding this comment.
Not sure I follow @oliviertassinari. I think we should just follow the Testing Lib recommendation here i.e. setup userEvent once per test.
There was a problem hiding this comment.
I have found testing-library/user-event#1036 (comment) about this. It could be ok
You should use userEvent.setup() after creating the document and before you render() your component. [...] if you hit one of the rare edge cases, it might be hard to debug - especially since most environments don't create a new document for each test.
prepareDocumentbails out if it's already called. https://github.com/testing-library/user-event/blob/d0362796a33c2d39713998f82ae309020c37b385/src/document/prepareDocument.ts#L19attachClipboardStubToViewbails out if it's already called. https://github.com/testing-library/user-event/blob/d0362796a33c2d39713998f82ae309020c37b385/src/utils/dataTransfer/Clipboard.ts#L113
So I don't really see why it's needed in our case since we share the same document between tests.
But no hard point of view. Just that if we want to be greedy, there is maybe an opportunity, but maybe not.
There was a problem hiding this comment.
With Vitest, the need to have a document always setup for each test could become an issue, depending on how parallelism is implemented. I imagine that it's OK, but it might not.
oliviertassinari
left a comment
There was a problem hiding this comment.
Can this break MUI X tests? Do we need to release this in a way that allows some tests to configure this behavior?
Technically yes, but unlikely. We could try it out before merging.
We could add a parameter to |
|
🙂 Yep, trying this in X breaks the tests, Edit: Looks like it now fails consistently |
mnajdova
left a comment
There was a problem hiding this comment.
Let's hold off merging until we figure out what are the issues in X.
| const result: MuiRenderResult = { | ||
| ...testingLibraryRenderResult, | ||
| user: userEvent.setup(), | ||
| user: userEvent.setup({ delay: null }), |
There was a problem hiding this comment.
I've looked into failing tests on mui/mui-x#14668 and I'm not sure we should move forward with this. 🤔
Is it really such a big problem to keep with the existing setTimeout wrapping for each userEvent call? 🤔
I wouldn't like to significantly degrade the DX (I wasn't able to fix all the failing tests without resetting delay to 0 on some of them) of writing tests for a negligible performance difference. 🙈 🤷
There was a problem hiding this comment.
I think we could let this PR rest until we've
- made all
actasync - refactor fake timers to scope to single tests only
- migrated to vitest
and then re-evaluate how broken it is.
There was a problem hiding this comment.
It makes sense, let's go with it. 👍
There was a problem hiding this comment.
Is it really such a big problem to keep with the existing setTimeout wrapping for each userEvent call?
@LukasTy I think that it boils down to this: #43757 (comment). If moving from fireEvent to userEvent x2 the CI run time (I don't know if true), then IMHO, we shouldn't. Feedback time on PR is already painfully slow, it feels more important.
I wasn't able to fix all the failing tests without resetting delay to 0 on some of them
Could you pinpoint to why? I mean Is there a technical reason why those setTimeout should be needed for tests to pass?
If the why this is needed is "race conditions", it sounds like the right move is to have { delay: null } in as many places as possible in the codebase as soon as possible to avoid regressions.
then re-evaluate how broken it is
This can work as well.
There was a problem hiding this comment.
Could you pinpoint to why? I mean Is there a technical reason why those setTimeout should be needed for tests to pass?
The main problem is the TransitionGroup on Pickers tests.
There are errors thrown about mutating state, because of it.
|
closing as it breaks X |

See this thread
I've seen this reduce the time of running
userEvent.keyboardby an order of magnitude, eliminating the motivation to avoid using this library. It comes at the cost of slightly changed semantics. But even with these different semantics, we'd be better off compared to the way we currently test.It would be best for us to primarily optimize our tests for refactorability. Tests that require updates on every implementation detail change miss the mark. We should aim at tests that maximize interfacing with public API and minimize reliance on implementation details. Therefore, unless we specifically want to test an implementation detail, we should prefer
userEvent.Closes mui/mui-x#14668