Skip to content

Commit b015892

Browse files
authored
workflow: cross platform vscode jest debugging (vuejs#414)
remove no longer needed proxy script
1 parent c7cd386 commit b015892

File tree

2 files changed

+5
-9
lines changed

2 files changed

+5
-9
lines changed

.vscode/launch.json

+5-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"name": "Jest",
99
"type": "node",
1010
"request": "launch",
11-
"program": "${workspaceFolder}/scripts/jest.js",
11+
"program": "${workspaceFolder}/node_modules/.bin/jest",
1212
"stopOnEntry": false,
1313
"args": ["${fileBasename}", "--runInBand", "--detectOpenHandles"],
1414
"cwd": "${workspaceFolder}",
@@ -19,7 +19,10 @@
1919
"NODE_ENV": "development"
2020
},
2121
"console": "integratedTerminal",
22-
"sourceMaps": true
22+
"sourceMaps": true,
23+
"windows": {
24+
"program": "${workspaceFolder}/node_modules/jest/bin/jest",
25+
}
2326
}
2427
]
2528
}

scripts/jest.js

-7
This file was deleted.

0 commit comments

Comments
 (0)