react-native-test-render-counter

1.0.3 • Public • Published

react-native-test-render-counter

Testing utility to track components render count in React Native applications

Proposal

Unnecessary Component re-renders is one of the most impactful performance issue in React Native applications, because most of the time it results in visible flicker, or UI not responding. With the rise of React hooks, now it's easy to make not optimized hooks, i.e. useSelector, or just misuse them, which result in multiple re-renders that could be avoided.

It's not hard to fix those performance problems, but it's difficult not to break these optimisations later, since there is nothing preventing a developer from doing so and in most cases performance degradation is not intended and is not noticed when running the app on a simulator.

The general idea is to optimize rendering in your application and then "lock" render count in unit tests, so if a developer makes changes which impact rendering count, whether it was intended or not, it will notify with a failing test. With such tests we can make sure our rendering performance is not degrading while refactoring and/or developing features.

Prerequisites

  • React Native in typescript
  • ts-jest
  • react-component-driver

Test Example:

Let's say we have a Post component, which renders content and like button. So if we wanted to test render count during press on like action, then ideally like button should render two times, but the content only once.

import {startRenderCounter, stopRenderCounter} from 'react-native-test-render-counter';

it('should validate render count during like action', async () => {
    const {getRenderCountByTestID} = startRenderCounter();
    const component = driver().render();

    expect(getRenderCountByTestID(testIDs.POST_CONTENT)).toEqual(1);
    expect(getRenderCountByTestID(testIDs.POST_LIKE_BUTTON)).toEqual(1);

    component.getPostAt(0).pressLike();

    expect(getRenderCountByTestID(testIDs.POST_CONTENT)).toEqual(1);
    expect(getRenderCountByTestID(testIDs.POST_LIKE_BUTTON)).toEqual(2);

    stopRenderCounter();
});

Jest Config:

In order to track render count with testID prop, we need to make sure each react element is rendered once, i.e. rendered shallowly so it does not have any more children with the same name. We need to mock all react-native components that are used for render count:

const React = require('react');

function mockComponent(name) {
  return class extends React.PureComponent {
    static displayName = name;
    render() {
      return React.createElement(name, this.props);
    }
  };
}

jest.mock('react-native', () => {
  const UI = jest.requireActual('react-native');

  const mocks = {
    View: mockComponent('View'),
    Button: mockComponent('Button'),
    TextInput: mockComponent('TextInput'),
  };

  return new Proxy(UI, {
    get(obj, key) {
      return key in mocks ? mocks[key] : obj[key];
    },
  });
});

Package Sidebar

Install

npm i react-native-test-render-counter

Weekly Downloads

1

Version

1.0.3

License

MIT

Unpacked Size

12.3 kB

Total Files

10

Last publish

Collaborators

  • wix.mobile
  • eimius