diff --git a/.vscode/launch.json b/.vscode/launch.json index 7592df9..4b63013 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -41,6 +41,44 @@ "args": [], "cwd": "${workspaceFolder}" }, + { + "type": "lldb", + "request": "launch", + "name": "Debug unit tests in library 'cryptography'", + "cargo": { + "args": [ + "test", + "--no-run", + "--lib", + "--package=cryptography" + ], + "filter": { + "name": "cryptography", + "kind": "lib" + } + }, + "args": [], + "cwd": "${workspaceFolder}" + }, + { + "type": "lldb", + "request": "launch", + "name": "Debug unit tests in library 'entity'", + "cargo": { + "args": [ + "test", + "--no-run", + "--lib", + "--package=entity" + ], + "filter": { + "name": "entity", + "kind": "lib" + } + }, + "args": [], + "cwd": "${workspaceFolder}" + }, { "type": "lldb", "request": "launch", @@ -59,43 +97,6 @@ }, "args": [], "cwd": "${workspaceFolder}" - }, - { - "type": "lldb", - "request": "launch", - "name": "Debug executable 'migration'", - "cargo": { - "args": [ - "build", - "--bin=migration", - "--package=migration" - ], - "filter": { - "name": "migration", - "kind": "bin" - } - }, - "args": [], - "cwd": "${workspaceFolder}" - }, - { - "type": "lldb", - "request": "launch", - "name": "Debug unit tests in executable 'migration'", - "cargo": { - "args": [ - "test", - "--no-run", - "--bin=migration", - "--package=migration" - ], - "filter": { - "name": "migration", - "kind": "bin" - } - }, - "args": [], - "cwd": "${workspaceFolder}" } ] } \ No newline at end of file