I am using react-native-testing-library
to test my react-native component.
I have a component (for the purpose of this post, it has been over simplified):
export const ComponentUnderTest = () => {
useEffect(() => {
__make_api_call_here_then_update_state__
}, [])
return (
<View>
__content__goes__here
</View>
)
}
Here is my (simplified) component.spec.tsx
:
import { render, act } from 'react-native-testing-library';
import { ComponentUnderTest } from './componentundertest.tsx';
test('it updates content on successful call', () => {
let root;
act(() => {
root = render(<ComponentUnderTest />); // this fails with below error message
});
expect(...);
})
Now when I run this code, I get this error:
Can't access .root on unmounted test renderer
I don't even now what this error message means. I followed the docs from the react-native-testing-library
on how to test with act and useEffect
.
Any help would be greatly appreciated. Thanks
I found a workaround: