Fadi George
Fadi George
For me at least, Vite was compiling my tests **coverage folder** which led to this heap error so I had to specify `root: src` in the config. Maybe optimizeDeps could...
I would check if its compiling a coverage folder, dist folder, or something else unintended.
I don't believe Firefox supports PWA natively.
Also this doesn't seem to happen on Windows.
Also doesn't happen if running the app from Chrome Apps folder (Mac).
I have a similar issue, can't do jest.mock. Doing `global.jest = jest` in setupTests makes it available but jest.mock won't actually mock the methods.
Im also experiencing this as well, I would think "*" should not log that warning, e.g. for something like this: ``` {/* Private Routes */} ``` If they were to...
@gilamran could you please share that script for changing the barrel files import? I'm in a similar bind where changing one reusable component is running 100s of tests. I've tried...
@gilamran ah interesting approach, thank you for sharing! I'll definitely play around with that idea.
@gilamran I assume you are doing something like this? Have you ran into any memory issues? ``` node build-tests && jest ./src/bundle.spec.ts ```` bundle.spec.ts: ``` import testBundle from './tests/bundle'; test('should...