## Describe the bug When I import and using something from `@testing-library/react-native` the following warning appears: `Jest did not exit one second after the test run has completed.` <!-- Describe your issue in detail. Include screenshots if needed. If this is a regression, let us know. --> ## Expected behavior This warning does not appear <!-- A clear and concise description of what you expected to happen. --> ## Steps to Reproduce Just import `render` and use it in a test: ``` import React from 'react'; import { Text } from 'react-native'; import { render } from '@testing-library/react-native'; it('testing library working', () => { const { getByText } = render(<Text>123</Text>); const text = getByText(/123/); expect(text).toBeTruthy(); }); ``` <!-- Let us know how to reproduce the issue. Include a code sample or share a project that reproduces the issue. Please follow the guidelines for providing a minimal example: https://stackoverflow.com/help/mcve. --> ## Screenshots   <!-- If applicable, add screenshots to help explain your problem. --> ## Versions ``` npmPackages: @testing-library/react-native: ^9.1.0 => 9.1.0 react: ^17.0.2 => 17.0.2 react-native: ^0.67.3 => 0.67.4 react-test-renderer: ^17.0.2 => 17.0.2 ``` <!-- run following command in terminal of your root project and paste the result down `npx envinfo --npmPackages react,react-native,react-test-renderer,@testing-library/react-native` -->