Skip to content
Advertisement

Tag: jestjs

How can I exclude files from Jest watch?

I’m doing some slightly bizarre stuff using Jest for testing where I’m writing some stuff to disk. If I use the watch flag in Jest however then I’m finding (quite obviously) that each time I write something to disk the tests refire again. I don’t currently have any sort of configuration, and I’ve taken a look at the documentation, but

Mocking globals in Jest

Is there any way in Jest to mock global objects, such as navigator, or Image*? I’ve pretty much given up on this, and left it up to a series of mockable utility methods. For example: Testing this tiny function is simple, but crufty and not deterministic at all. I can get 75% of the way there, but this is about

Advertisement