我已经使用create-react-app创建了一个应用程序。
我在.env中设置了我的NODE_PATH=src/当我启动react-script start
时
一切正常,但是当我启动react-script test时出现错误:找不到导入。在我的package.json中:
"test": "jest --colors --coverage test"
编辑
它适用于:
"jest": {
"modulePaths": ["src/"],
"testURL": "http://localhost",
"jest": "^22.4.4"
}