Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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}"
}
]
}