Yarn test failing - Network request failed

前端 未结 1 613
太阳男子
太阳男子 2021-01-19 03:49

I created a react project using create-react-app however when ran yarn test to see if the initial tests pass I get

TypeError: Netwo         


        
相关标签:
1条回答
  • 2021-01-19 04:09

    I already solve my problem. I'm following a book entitled "The Road to Learn React" and I think that the one causing my error is the part where I fetch data from an external API. The book forgot to include an import for fetch which is this one:

    import fetch from 'isomorphic-fetch'
    

    Then, it solves my problem like a charm.

    0 讨论(0)
提交回复
热议问题