How to use Jest with React Native

后端 未结 3 1655
情书的邮戳
情书的邮戳 2020-12-14 08:17

The testing section of the docs for React Native suggest that Jest is the official way to do unit tests. However, they don\'t explain how to get it setup. Running Jest witho

3条回答
  •  心在旅途
    2020-12-14 09:06

    As of React Native v0.37.0, Jest is part of the new app template.

    In a new app you can run tests right away:

    $ react-native init MyAwesomeApp
    $ cd MyAwesomeApp
    $ npm test
    ...
    Tests:       2 passed
    

提交回复
热议问题