Skip to content

Commit f1477a8

Browse files
author
Brian Chen
authored
Fix VS Code launch.json to look for mocha/karma in the right location (#2642)
1 parent ad8e0c7 commit f1477a8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.vscode/launch.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"type": "node",
2727
"request": "launch",
2828
"name": "Firestore Unit Tests (Node)",
29-
"program": "${workspaceRoot}/packages/firestore/node_modules/.bin/_mocha",
29+
"program": "${workspaceRoot}/node_modules/.bin/_mocha",
3030
"cwd": "${workspaceRoot}/packages/firestore",
3131
"args": [
3232
"--require", "ts-node/register/type-check",
@@ -46,7 +46,7 @@
4646
"type": "node",
4747
"request": "launch",
4848
"name": "Firestore Unit Tests (Node / Persistence)",
49-
"program": "${workspaceRoot}/packages/firestore/node_modules/.bin/_mocha",
49+
"program": "${workspaceRoot}/node_modules/.bin/_mocha",
5050
"cwd": "${workspaceRoot}/packages/firestore",
5151
"args": [
5252
"--require", "ts-node/register/type-check",

0 commit comments

Comments
 (0)