How to use Jest to test functions using crypto or window.msCrypto
When running unit tests with Jest in react the window.crypto
API is causing problems. I haven’t found a way to incorporate crypto
in Jest without installing other packages which is something I can’t do. So without using another npm package is there a way to test functions that use: crypto.getRandomValues()
in them that doesn’t crash Jest? Any links, advice, or tips are appreciated