Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[jest] Suppress warning about non-worklet callbacks (#3050)
## Description As mentioned in [this discussion](#3047), while testing Gesture Handler with `jest` you can see the following warning: ``` None of the callbacks in the gesture are worklets. If you wish to run them on the JS thread use '.runOnJS(true)' modifier on the gesture to make this explicit. Otherwise, mark the callbacks as 'worklet' to run them on the UI thread. ``` Since `worklets` do not work in `jest`, I believe it is safe to simply suppress this error. ## Test plan Run tests in our repository
- Loading branch information