From 5cc159e7a351ed9418c8c630631d276b61dd15c4 Mon Sep 17 00:00:00 2001 From: Manuel Gugger Date: Sun, 28 Aug 2022 20:27:53 +0200 Subject: [PATCH] remove vscode --- .vscode/launch.json | 65 --------------------------------------------- 1 file changed, 65 deletions(-) delete mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json deleted file mode 100644 index 905c100..0000000 --- a/.vscode/launch.json +++ /dev/null @@ -1,65 +0,0 @@ -{ - // 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 'actix_admin'", - "cargo": { - "args": [ - "test", - "--no-run", - "--lib", - "--package=actix_admin" - ], - "filter": { - "name": "actix_admin", - "kind": "lib" - } - }, - "args": [], - "cwd": "${workspaceFolder}" - }, - { - "type": "lldb", - "request": "launch", - "name": "Debug integration test 'integration_test_get_resp_is_success'", - "cargo": { - "args": [ - "test", - "--no-run", - "--test=integration_test_get_resp_is_success", - "--package=actix_admin" - ], - "filter": { - "name": "integration_test_get_resp_is_success", - "kind": "test" - } - }, - "args": [], - "cwd": "${workspaceFolder}" - }, - { - "type": "lldb", - "request": "launch", - "name": "Debug integration test 'integration_test_post_resp_is_success'", - "cargo": { - "args": [ - "test", - "--no-run", - "--test=integration_test_post_resp_is_success", - "--package=actix_admin" - ], - "filter": { - "name": "integration_test_post_resp_is_success", - "kind": "test" - } - }, - "args": [], - "cwd": "${workspaceFolder}" - } - ] -} \ No newline at end of file