## Describe the bug At line https://github.com/callstack/react-native-testing-library/blob/0f5cc2e28f0decab86114a1398e0b70672a9e1e6/src/fire-event.ts#L121 you call act with void directive to silence the promise. Why? [act](https://react.dev/reference/react/act) is an async function which needs to be awaited. ## Expected behavior Return promise or wait for act and handler to finish