Tyler Coffman

Results 36 comments of Tyler Coffman

I just want to add credence to the idea that sometimes there are real-world use cases that are impacted by this: Our team is running into this issue because of...

I wonder if `measure` from this library would work better in this instance than the one that comes from RN itself: https://github.com/sergeymild/react-native-jsi-view-helpers

This has been a problem for our team as well. We've had to mitigate this by disabling test parallelism and using `--runInBand` which is sad because instead of 2m now...

This is still an issue. I've worked around this by running unit tests on macOS but this workaround kind of sucks.

> Also was hitting this, resolved by setting maxWorkers in `jest.config.js` for CI/non-CI. > > ``` > maxWorkers: process.env.CI ? 4 : "50%", > ...(process.env.CI && { > runInBand: true,...