Hai*_*ham 4 javascript reactjs jestjs visual-studio-code
我正在使用带有vscode config的调试玩笑,这是launch.json配置:
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Jest Current File",
"program": "${workspaceFolder}/node_modules/.bin/jest",
"args": [
"${relativeFile}"
],
"env": {
"cross-env": "1",
"NODE_PATH": "./src",
"__PLATFORM__": " WEB",
},
"runtimeArgs": [
],
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"windows": {
"program": "${workspaceFolder}/node_modules/jest/bin/jest",
}
}
]
}
Run Code Online (Sandbox Code Playgroud)
在我将VSCode更新为1.32.1之前,此配置正常工作。现在,当我运行Jest当前文件时,控制台将输出如下:
Debugger attached.
No tests found
In D:\workspace\my-project
747 files checked.
testMatch: - 747 matches
testPathIgnorePatterns: \\node_modules\\ - 747 matches
testRegex: (\\__tests__\\.*|(\.|\\)(test))\.js?$ - 15 matches
Pattern: src\utils\storage\my-file-name.test.js - 0 matches
Waiting for the debugger to disconnect...
Run Code Online (Sandbox Code Playgroud)
任何帮助将不胜感激,在此先感谢。
安装旧版本VSCode(1.30.2)之后,我看到了输出:
Test Suites: 1 passed, 1 total
Tests: 9 passed, 9 total
Snapshots: 0 total
Time: 4.866s
Ran all test suites matching /src\\utils\\storage\\my-file-name.test.js/i.
Waiting for the debugger to disconnect...
Run Code Online (Sandbox Code Playgroud)
区别是Pattern:
/src\\utils\\storage\\my-file-name.test.js/i.src\utils\storage\my-file-name.test.jsVSCode将其${relativeFile}分隔符从更改\\为\,这就是为什么jest找不到测试文件的原因
对于那些谁被卡住,只是改变"${relativeFile}"到"${fileBasenameNoExtension}"的launch.json配置:
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Jest Current File",
"program": "${workspaceFolder}/node_modules/.bin/jest",
"args": [
"./${fileBasename}"
],
"env": {
"cross-env": "1",
"NODE_PATH": "./src",
"__PLATFORM__": " WEB",
},
"runtimeArgs": [
],
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"windows": {
"program": "${workspaceFolder}/node_modules/jest/bin/jest",
}
}
]
}
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
424 次 |
| 最近记录: |