We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40344b0 commit 81462d5Copy full SHA for 81462d5
.vscode/launch.json
@@ -6,15 +6,22 @@
6
"configurations": [
7
{
8
"name": "Debug Tests",
9
- "type": "cppvsdbg",
+ "type": "lldb",
10
"request": "launch",
11
- "program": "${workspaceFolder}/target/debug/test-f8914282c3a53115.exe",
+ "cargo": {
12
+ "args": [
13
+ "test",
14
+ "--no-run",
15
+ "--test=test",
16
+ "--package=dprint-plugin-typescript"
17
+ ],
18
+ "filter": {
19
+ "name": "test",
20
+ "kind": "test"
21
+ }
22
+ },
23
"args": [],
- "stopAtEntry": false,
- "cwd": "${workspaceFolder}",
- "environment": [],
- "externalConsole": false,
- "preLaunchTask": "cargo test build"
24
+ "cwd": "${workspaceFolder}"
25
}
26
]
27
0 commit comments