SyntaxError with Jest and React and importing CSS files

后端 未结 7 1161
-上瘾入骨i
-上瘾入骨i 2020-12-02 17:01

I am trying to get my first Jest Test to pass with React and Babel.

I am getting the following error:

SyntaxError: /Users/manueldupont/test/av

7条回答
  •  天涯浪人
    2020-12-02 17:09

    Solution of @import Unexpected token=:)

    Install package:

    npm i --save-dev identity-obj-proxy
    

    Add in jest.config.js

    module.exports = {
      "moduleNameMapper": {
        "\\.(css|less|scss)$": "identity-obj-proxy"
      }
    }
    

提交回复
热议问题