Skip to content

act does not support async callback #176

@Iskander508

Description

@Iskander508

Versions

"react": "16.8.3"
"react-native": "0.59.5"
"react-test-renderer": "16.8.3"
"react-native-testing-library": "1.7.0"

Description

Unable to use async function as act callback without console errors.
Either a console.error is emitted when not using act in the test (see Demo 1)
or the test fails by using async callback in act (see Demo 2)

Now supported in react-testing-library:
https://github.com/testing-library/react-testing-library/releases/tag/v6.1.0

Demo 1 (not wrapping in act)

import { render, act } from 'react-native-testing-library';
import Dialog from '...';

const Component = () => {
  const [result, setResult] = React.useState(null);
  return (
    <View>
      <Text>{result}</Text>
      <Dialog
        onSubmit={async value => {
          setResult(await doSomethingAsync(value));
        }}
      />
    </View>
  );
};

// ... then in test
  const elem = render(<Component />);
  const dialog = elem.getByType(Dialog);
  await dialog.props.onSubmit('value');

Emits console error:

Warning: An update to Component inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() => {
  /* fire events that update state */
});
/* assert on the output */

This ensures that you're testing the behavior the user would see in the browser. Learn more at https://fb.me/react-wrap-tests-with-act

Demo 2 (wrapping with act -> test failure)

import { render, act } from 'react-native-testing-library';
import Dialog from '...';

const Component = () => {
  const [result, setResult] = React.useState(null);
  return (
    <View>
      <Text>{result}</Text>
      <Dialog
        onSubmit={async value => {
          setResult(await doSomethingAsync(value));
        }}
      />
    </View>
  );
};

// ... then in test
  const elem = render(<Component />);
  const dialog = elem.getByType(Dialog);
  await act(() => dialog.props.onSubmit('value'));

test failure with error:

Warning: The callback passed to TestRenderer.act(...) function must not return anything.

It looks like you wrote TestRenderer.act(async () => ...) or returned a Promise from it's callback. Putting asynchronous logic inside TestRenderer.act(...) is not supported.


console.error node_modules/react-test-renderer/cjs/react-test-renderer.development.js:102
Warning: Do not await the result of calling TestRenderer.act(...), it is not a Promise.

Activity

Iskander508

Iskander508 commented on May 22, 2019

@Iskander508
Author

I have just tried to update the dependencies to:

"react": "16.9.0-alpha.0"
"react-test-renderer": "16.9.0-alpha.0"

which solves the issue and enables the Demo 2 syntax without any warnings. So we probably just need to wait for next react release.

thymikee

thymikee commented on May 22, 2019

@thymikee
Member

Yup, but it's still not yet supported by RN. Hopefully you won't mind me closing this issue. Thanks for reporting and coming back!

alexanderkrum

alexanderkrum commented on Jun 23, 2019

@alexanderkrum

For now I am using the jest --silent to disable react logging

fabOnReact

fabOnReact commented on Jun 20, 2020

@fabOnReact

@callstack-team I decided to post this message as my Pull-Request https://github.com/fabriziobertoglio1987/react-native-task/pull/5 and commits are referencing this issue

I experienced this problem. act would trigger the warning with this async function. Removing async..await would remove the warning.

async function fetchRows() {
  const result = await fetchRowsFromApi(param);
}

This solution worked in my case:

  1. Upgrade to react-native@0.62.2, react@16.11.0, react-test-renderer@16.11.0 and "react-native-testing-library": "^2.0.0"

  2. await act(async () => ...) facebook/react#14853 (comment)

test('renders lists', async () => {
   // ... 
    await act(async () => { 
      await fireEvent.changeText(searchInput, "f")
    });
}
fabOnReact

fabOnReact commented on Jan 12, 2021

@fabOnReact
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

      Development

      No branches or pull requests

        Participants

        @alexanderkrum@Iskander508@thymikee@fabOnReact

        Issue actions

          act does not support async callback · Issue #176 · callstack/react-native-testing-library