Skip to content

Commit

Permalink
Fix VS Code launch.json to look for mocha/karma in the right location (
Browse files Browse the repository at this point in the history
  • Loading branch information
Brian Chen authored Feb 28, 2020
1 parent ad8e0c7 commit f1477a8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"type": "node",
"request": "launch",
"name": "Firestore Unit Tests (Node)",
"program": "${workspaceRoot}/packages/firestore/node_modules/.bin/_mocha",
"program": "${workspaceRoot}/node_modules/.bin/_mocha",
"cwd": "${workspaceRoot}/packages/firestore",
"args": [
"--require", "ts-node/register/type-check",
Expand All @@ -46,7 +46,7 @@
"type": "node",
"request": "launch",
"name": "Firestore Unit Tests (Node / Persistence)",
"program": "${workspaceRoot}/packages/firestore/node_modules/.bin/_mocha",
"program": "${workspaceRoot}/node_modules/.bin/_mocha",
"cwd": "${workspaceRoot}/packages/firestore",
"args": [
"--require", "ts-node/register/type-check",
Expand Down

0 comments on commit f1477a8

Please sign in to comment.