aboutsummaryrefslogtreecommitdiff
path: root/.vscode/launch.json
diff options
context:
space:
mode:
Diffstat (limited to '.vscode/launch.json')
-rw-r--r--.vscode/launch.json36
1 files changed, 36 insertions, 0 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
new file mode 100644
index 0000000..ebf135c
--- /dev/null
+++ b/.vscode/launch.json
@@ -0,0 +1,36 @@
1{
2 // Use IntelliSense to learn about possible attributes.
3 // Hover to view descriptions of existing attributes.
4 // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5 "version": "0.2.0",
6 "configurations": [
7 {
8 "type": "lldb",
9 "request": "launch",
10 "name": "Debug unit tests in library 'archivator'",
11 "cargo": {
12 "args": ["test", "--no-run", "--lib", "--package=archivator"],
13 "filter": {
14 "name": "archivator",
15 "kind": "lib"
16 }
17 },
18 "args": [],
19 "cwd": "${workspaceFolder}"
20 },
21 {
22 "type": "lldb",
23 "request": "launch",
24 "name": "Debug integration test 'archive'",
25 "cargo": {
26 "args": ["test", "--no-run", "--test=archive", "--package=archivator"],
27 "filter": {
28 "name": "archive",
29 "kind": "test"
30 }
31 },
32 "args": [],
33 "cwd": "${workspaceFolder}"
34 }
35 ]
36}