Importing images breaks jest test

前端 未结 4 826
花落未央
花落未央 2020-12-25 10:59

In React components importing assets (ex, import logo from \"../../../assets/img/logo.png) gives such error

({\"Object.\":function(module,exports

4条回答
  •  無奈伤痛
    2020-12-25 11:08

    In case of IOS image names with @

    moduleNameMapper: {
        "^image![a-zA-Z0-9$_-]+$": "GlobalImageStub",
        "^[@./a-zA-Z0-9$_-]+\\.(png|gif)$": "RelativeImageStub"
      }
    

提交回复
热议问题