In React Native how can I test my components with Shallow Rendering?

后端 未结 2 1858
悲&欢浪女
悲&欢浪女 2021-02-07 03:17

For React, I use Shallow Rendering techniques for unit testing my React components. Can I do something similar in React Native?

I\'ve followed the instructions to set

2条回答
  •  忘掉有多难
    2021-02-07 03:55

    I think enzyme is what you're looking for.

    It provides you a shallow function which allows you to make a shallow comparison (as you want).

    Enzyme can be used along with all of the popular test runners (like Mocha, Jest, Karma etc). Full list can be found on the library's github page.

    Example:

    import {shallow} from 'enzyme';
    
    describe('', () => {
      it('should render three  components', () => {
        const wrapper = shallow();
        expect(wrapper.find(Foo)).to.have.length(3);
      });
    });
    

    For the further reading you can take a look on enzyme's Shallow Rendering API or docs in general.

提交回复
热议问题