Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Using something from testing library causes warning: Jest did not exit one second after the test run has completed. #982

Closed
paskalov-aris opened this issue May 23, 2022 · 7 comments

Comments

@paskalov-aris
Copy link

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.

Expected behavior

This warning does not appear

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();
});

Screenshots

Screenshot 2022-05-23 at 10 40 41
Screenshot 2022-05-23 at 09 35 03

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
@paskalov-aris paskalov-aris closed this as not planned Won't fix, can't repro, duplicate, stale May 23, 2022
@sondreluc
Copy link

@paskalov-aris I'm experiencing this exact problem, but with @testing-library/react-hooks. Did you solve this?

@jamesL92
Copy link

jamesL92 commented Jun 17, 2022

I'm also experiencing the same issue. Would love to know what you did to solve this @paskalov-aris (assuming it was solved that is)

@dapicester
Copy link

I am using Expo and I got the same error. I solved it by using Jest version compatible to Expo (in my case 26.x). The error occurred when I was using Jest 28.x

@jamesL92
Copy link

I was about to say - downgrading Jest to 27.5.1 seems to have fixed it for me.

I still feel like this issue should be reopened though, feels like there's something in the way @testing-library/react-native methods operate that cause this to be an issue in jest v28+.

@dennis-gonzales
Copy link

I am using Expo and I got the same error. I solved it by using Jest version compatible to Expo (in my case 26.x). The error occurred when I was using Jest 28.x

Can confirm that downgrading to the version that expo supports fixed the issue for me.
Command I used fyr

expo install jest -- -D

@mdjastrzebski
Copy link
Member

This seems to be the same error as #1054.

@dennis-gonzales @jamesL92 @dapicester @sondreluc @paskalov-aris please check if [this fix]((#1054 (comment)) works for you.

@sondreluc
Copy link

@mdjastrzebski Can confirm that it fixes this issue for me 👍

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

6 participants