Skip to content

Commit

Permalink
Update VSCode workspace paths for Mocha (#446)
Browse files Browse the repository at this point in the history
Signed-off-by: Frank Hinek <[email protected]>
  • Loading branch information
frankhinek authored Mar 15, 2024
1 parent 4eb80e5 commit 535c112
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion packages/agent/.vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"type": "node",
"request": "launch",
"name": "test:node",
"runtimeExecutable": "${workspaceFolder:root}/node_modules/.bin/mocha",
"runtimeExecutable": "${workspaceFolder:agent}/node_modules/.bin/mocha",
"console": "internalConsole",
"preLaunchTask": "build tests",
"skipFiles": [
Expand Down
2 changes: 1 addition & 1 deletion packages/api/.vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"type": "node",
"request": "launch",
"name": "test:node",
"runtimeExecutable": "${workspaceFolder:root}/node_modules/.bin/mocha",
"runtimeExecutable": "${workspaceFolder:api}/node_modules/.bin/mocha",
"console": "internalConsole",
"preLaunchTask": "build tests",
"skipFiles": [
Expand Down
2 changes: 1 addition & 1 deletion packages/common/.vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"type": "node",
"request": "launch",
"name": "test:node",
"runtimeExecutable": "${workspaceFolder:root}/node_modules/.bin/mocha",
"runtimeExecutable": "${workspaceFolder:common}/node_modules/.bin/mocha",
"console": "internalConsole",
"preLaunchTask": "build tests",
"skipFiles": [
Expand Down
2 changes: 1 addition & 1 deletion packages/credentials/.vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"type": "node",
"request": "launch",
"name": "test:node",
"runtimeExecutable": "${workspaceFolder:root}/node_modules/.bin/mocha",
"runtimeExecutable": "${workspaceFolder:credentials}/node_modules/.bin/mocha",
"console": "internalConsole",
"preLaunchTask": "build tests",
"skipFiles": [
Expand Down
2 changes: 1 addition & 1 deletion packages/crypto-aws-kms/.vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"type": "node",
"request": "launch",
"name": "test:node",
"runtimeExecutable": "${workspaceFolder:root}/node_modules/.bin/mocha",
"runtimeExecutable": "${workspaceFolder:crypto-aws-kms}/node_modules/.bin/mocha",
"console": "internalConsole",
"preLaunchTask": "build tests",
"skipFiles": [
Expand Down
2 changes: 1 addition & 1 deletion packages/crypto/.vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"type": "node",
"request": "launch",
"name": "test:node",
"runtimeExecutable": "${workspaceFolder:root}/node_modules/.bin/mocha",
"runtimeExecutable": "${workspaceFolder:crypto}/node_modules/.bin/mocha",
"console": "internalConsole",
"preLaunchTask": "build tests",
"skipFiles": [
Expand Down
2 changes: 1 addition & 1 deletion packages/dids/.vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"type": "node",
"request": "launch",
"name": "test:node",
"runtimeExecutable": "${workspaceFolder:root}/node_modules/.bin/mocha",
"runtimeExecutable": "${workspaceFolder:dids}/node_modules/.bin/mocha",
"console": "internalConsole",
"preLaunchTask": "build tests",
"skipFiles": [
Expand Down
2 changes: 1 addition & 1 deletion packages/identity-agent/.vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"type": "node",
"request": "launch",
"name": "test:node",
"runtimeExecutable": "${workspaceFolder:root}/node_modules/.bin/mocha",
"runtimeExecutable": "${workspaceFolder:identity-agent}/node_modules/.bin/mocha",
"console": "internalConsole",
"preLaunchTask": "build tests",
"skipFiles": [
Expand Down
2 changes: 1 addition & 1 deletion packages/proxy-agent/.vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"type": "node",
"request": "launch",
"name": "test:node",
"runtimeExecutable": "${workspaceFolder:root}/node_modules/.bin/mocha",
"runtimeExecutable": "${workspaceFolder:proxy-agent}/node_modules/.bin/mocha",
"console": "internalConsole",
"preLaunchTask": "build tests",
"skipFiles": [
Expand Down
2 changes: 1 addition & 1 deletion packages/user-agent/.vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"type": "node",
"request": "launch",
"name": "test:node",
"runtimeExecutable": "${workspaceFolder:root}/node_modules/.bin/mocha",
"runtimeExecutable": "${workspaceFolder:user-agent}/node_modules/.bin/mocha",
"console": "internalConsole",
"preLaunchTask": "build tests",
"skipFiles": [
Expand Down

0 comments on commit 535c112

Please sign in to comment.