How do folks test timing-related stuff with MSW? AFAIK, MSW doesn't get along with jest.useFakeTimers. It drives me nuts; I have a bunch of disabled tests in an open-source project and at least one that is flaky because it uses real timers where I'd like to be using fake timers. [1, 2]<p>I've been thinking about ripping out MSW from my tests in favor of my own API-level mock for this reason. But it seems like many other folks are happy with MSW. I have to assume there's something I'm not getting. I'm a fish out of water with frontend stuff in general...<p>[1] <a href="https://github.com/scottlamb/moonfire-nvr/blob/5ea5d27908f1a3e84daacebcc518a6961220b3de/ui/src/Login.test.tsx#L36">https://github.com/scottlamb/moonfire-nvr/blob/5ea5d27908f1a...</a><p>[2] <a href="https://github.com/scottlamb/moonfire-nvr/blob/5ea5d27908f1a3e84daacebcc518a6961220b3de/ui/src/List/VideoList.test.tsx#L133">https://github.com/scottlamb/moonfire-nvr/blob/5ea5d27908f1a...</a>