| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- {
- // 使用 IntelliSense 了解相关属性。
- // 悬停以查看现有属性的描述。
- // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
- "version": "0.2.0",
- "configurations": [
- {
- "name": "Debug UnitTest",
- "type": "node",
- "request": "launch",
- "runtimeArgs": [
- "--inspect-brk",
- "${workspaceRoot}/node_modules/.bin/jest",
- "${workspaceRoot}/packages/semi-ui/select/", // 需要调试哪个组件,替换文件夹路径即可
- "--runInBand",
- // "--coverage",
- "--silent" // ignore warning such as componentWillReceiveProps will be abondon...
- ],
- "env": {
- "NODE_ENV": "test",
- // "type": "story" // 调试snapshot快照的时候用这个
- "type": "unit" // 调试unitTest的时候用这个
- },
- "runtimeExecutable": "/Users/bytedance/.nvm/versions/node/v16.17.1/bin/node",
- "console": "integratedTerminal",
- "internalConsoleOptions": "neverOpen",
- "port": 9229
- },
- {
- "name": "Debug StorySnapShot",
- "type": "node",
- "request": "launch",
- "runtimeArgs": [
- "--inspect-brk",
- "${workspaceRoot}/node_modules/.bin/jest",
- "--runInBand",
- "--silent" // ignore warning such as componentWillReceiveProps will be abondon...
- ],
- "env": {
- "NODE_ENV": "test",
- "type": "story"
- },
- "console": "integratedTerminal",
- "internalConsoleOptions": "neverOpen",
- "port": 9229
- }
- ]
- }
|