Skip to content

Commit

Permalink
Create launch.json
Browse files Browse the repository at this point in the history
  • Loading branch information
seishun committed Sep 20, 2024
1 parent f61383c commit 1503615
Showing 1 changed file with 102 additions and 0 deletions.
102 changes: 102 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,102 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in library 'deno_task_shell'",
"cargo": {
"args": [
"test",
"--no-run",
"--lib",
"--package=deno_task_shell"
],
"filter": {
"name": "deno_task_shell",
"kind": "lib"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in library 'shell'",
"cargo": {
"args": [
"test",
"--no-run",
"--lib",
"--package=shell"
],
"filter": {
"name": "shell",
"kind": "lib"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug executable 'shell'",
"cargo": {
"args": [
"build",
"--bin=shell",
"--package=shell"
],
"filter": {
"name": "shell",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in executable 'shell'",
"cargo": {
"args": [
"test",
"--no-run",
"--bin=shell",
"--package=shell"
],
"filter": {
"name": "shell",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in library 'tests'",
"cargo": {
"args": [
"test",
"--no-run",
"--lib",
"--package=tests"
],
"filter": {
"name": "tests",
"kind": "lib"
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
}

0 comments on commit 1503615

Please sign in to comment.