Skip to content

Commit

Permalink
fix launch.json and ignore debugger tests on package
Browse files Browse the repository at this point in the history
  • Loading branch information
ivojawer committed Sep 4, 2024
1 parent 399b75d commit 6530f50
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@
"args": [
"--disable-extensions",
"--extensionDevelopmentPath=${workspaceRoot}",
"--extensionTestsPath=${workspaceRoot}/client/out/test",
"${workspaceRoot}/client/testFixture"
"--extensionTestsPath=${workspaceRoot}/packages/client/out/test",
"${workspaceRoot}/packages/client/testFixture"
],
"outFiles": ["${workspaceRoot}/out/client/test/**/*.js"],
"outFiles": ["${workspaceRoot}/packages/client/out/test/**/*.js"],
"preLaunchTask": {
"type": "npm",
"script": "watch"
Expand Down
1 change: 1 addition & 0 deletions .vscodeignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ contributing.md
packages/client/out/test/**
packages/client/out/testFixture/**
packages/server/out/test/**
packages/debug-adapter/out/test/**

# node_modules, except by vscode and needed dependencies
packages/client/node_modules/**
Expand Down

0 comments on commit 6530f50

Please sign in to comment.