描述bug
首先,我已经安装了这些模块:
"@testing-library/jest-dom": "^5.12.0",
"@testing-library/react": "^11.2.6",
"@testing-library/user-event": "^12.8.3",
"@types/jest": "^26.0.23",
"@types/node": "^12.20.11",
"@types/react": "^17.0.4",
"@types/react-dom": "^17.0.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scripts": "4.0.3",
"typescript": "^4.2.4",
"web-vitals": "^1.1.1"
我想要编写模块导入代码,如下所示:
import MyPage from '~/pages/MyPage'
所以,我将这段代码添加到tsconfig.json的compilerOptions中。
"baseUrl": "./",
"paths": {
"~/*": ["./src/*"],
},
然后,当我关闭并重新打开VSCode(我认为这会触发react-scripts测试)时,tsconfig.json中的path
选项被删除了。
你是否尝试恢复依赖项?
我已经多次重新安装了我的模块。
你在用户指南中搜索了哪些术语?
我找不到任何东西,但这#10178与我的问题类似。
环境
"dependencies": {
"@testing-library/jest-dom": "^5.12.0",
"@testing-library/react": "^11.2.6",
"@testing-library/user-event": "^12.8.3",
"@types/jest": "^26.0.23",
"@types/node": "^12.20.11",
"@types/react": "^17.0.4",
"@types/react-dom": "^17.0.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scripts": "4.0.3",
"typescript": "^4.2.4",
"web-vitals": "^1.1.1"
},
"scripts": {
"start-cra": "react-scripts start",
"build-cra": "react-scripts build",
"test": "react-scripts test", // <-- my issue is solved when I delete this script
"eject": "react-scripts eject",
"storybook": "start-storybook -p 6006 -s public",
"build-storybook": "build-storybook -s public",
"build": "rollup -c"
},
重现步骤
(在这里写下你的步骤:)
npx create-react-app cra-test --template typescript
- 通过vscode打开项目
- 在tsconfig.json中添加以下选项
"baseUrl": "./",
"paths": {
"~/*": ["./src/stories/*"],
},
- 关闭vscode
- 通过vscode重新打开项目
6条答案
按热度按时间of1yzvn41#
相同的问题
5us2dqdw2#
同样的疑问:(
8hhllhi23#
这不仅仅是测试脚本,
npm run start
也会覆盖tsconfig。xxb16uws4#
一个好的测试用例是使用
es2020
中的某个东西。例如,在你的tsconfig.json
中尝试编写以下内容:
testing.test.ts
你将得到以下错误:
它在非测试环境中可以正常工作,但在测试环境中会失败。类似于node模块,仅仅是
.ts
文件的测试文件需要在底部添加一个export {}
。xoshrz7s5#
我能够使用
posttest
脚本和 json 库解决这个问题。在你的项目中安装 json 库。
然后在你的
package.json
中添加这个脚本:这个脚本将在测试脚本完成后覆盖 noEmit 值。
v9tzhpje6#
这个问题已经被自动标记为过时,因为它没有任何最近的活动。如果没有发生任何进一步的活动,它将在5天后被关闭。