enzymejs / enzyme

JavaScript Testing utilities for React
https://enzymejs.github.io/enzyme/
MIT License
19.96k stars 2.01k forks source link

Setting state on unmounted functional components should issue a warning and fail the test #2551

Open fruttut opened 2 years ago

fruttut commented 2 years ago

Consider this simple component, which sends an API request on mount and sets component's state to the response:

import React, { useState, useEffect } from 'react';

export const TestComponent = ({
  fetchSomethingFromAPI,
}) => {
  const [state, setState] = useState('');

  useEffect(() => {
    fetchSomethingFromAPI().then((result) => setState(result));
  }, []);

  return <div>{state}</div>;
};

If the component had unmounted by the time the request completed, the 'infamous' "Can't perform a React state update on an unmounted component" warning would have been printed to console. However, when I try to write a failing test for this case, enzyme doesn't issue a warning and considers the test to have passed. This is my test's code:

import React from 'react';
import { mount } from 'enzyme';
import { act } from 'react-dom/test-utils';

// auxiliary class
class MockPromise {
  const thenCallbacks = [];

  then(callback) {
    this.thenCallbacks.push(callback);
    return this;
  }

  resolve(val) {
    this.thenCallbacks.forEach((callback) => callback(val));
  }
}

describe('TestComponent', () => {
  test('should not set state on unmounted component', () => {
    const promise = new MockPromise();
    const fetchSomethingFromAPI = () => promise;
    const wrapper = mount(<TestComponent fetchSomethingFromAPI={fetchSomethingFromAPI} />);
    wrapper.unmount();
    act(() => {
      promise.resolve(null);
    });
    wrapper.update();
  });
});

This problem seems to only be affecting functional components, for class components the test would fail with the "setState() can only be called on class components" error message; while the message is not the same as it would be in dev environment, at least it allows me to test my class components for this particular case.

Current behavior

Setting state on an unmounted functional component doesn't issue a warning and allows the test to pass

Expected behavior

Setting state on an unmounted functional component should issue a warning and fail the test

Your environment

API

Version

library version
enzyme 3.11.0
react 16.8.3
react-dom 16.8.3
react-test-renderer
adapter (below) 1.15.5

Adapter