summaryrefslogtreecommitdiff
path: root/.vscode
diff options
context:
space:
mode:
authorNate Sesti <sestinj@gmail.com>2023-08-09 18:06:11 -0700
committerNate Sesti <sestinj@gmail.com>2023-08-09 18:06:11 -0700
commit855de8f09ef41909dc65a51adf4b954272a51dd2 (patch)
treefa3202b38f9886fb90599db9924701fbaa7d8fac /.vscode
parent23df57edaee956c43a323da30a5bf0cc84182c67 (diff)
downloadsncontinue-855de8f09ef41909dc65a51adf4b954272a51dd2.tar.gz
sncontinue-855de8f09ef41909dc65a51adf4b954272a51dd2.tar.bz2
sncontinue-855de8f09ef41909dc65a51adf4b954272a51dd2.zip
ci: :green_heart: testing testing in ci
Diffstat (limited to '.vscode')
-rw-r--r--.vscode/launch.json31
1 files changed, 10 insertions, 21 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
index bbe1fd2e..12cfaef8 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -7,18 +7,12 @@
{
"name": "Server + Extension (VSCode)",
"stopAll": true,
- "configurations": [
- "Server",
- "Extension (VSCode)"
- ]
+ "configurations": ["Server", "Extension (VSCode)"]
},
{
"name": "Server + Tests (VSCode)",
"stopAll": true,
- "configurations": [
- "Server",
- "Tests (VSCode)"
- ]
+ "configurations": ["Server", "Tests (VSCode)"]
}
],
"configurations": [
@@ -27,12 +21,9 @@
"type": "python",
"request": "launch",
"module": "continuedev.src.continuedev.server.main",
- "args": [
- "--port",
- "8001"
- ],
+ "args": ["--port", "8001"],
"justMyCode": false,
- "subProcess": false,
+ "subProcess": false
// Does it need a build task?
// What about a watch task? - type errors?
},
@@ -45,11 +36,9 @@
// Pass a directory to manually test in
"${workspaceFolder}/extension/manual-testing-sandbox",
"${workspaceFolder}/extension/manual-testing-sandbox/example.ts",
- "--extensionDevelopmentPath=${workspaceFolder}/extension",
- ],
- "outFiles": [
- "${workspaceFolder}/extension/out/**/*.js"
+ "--extensionDevelopmentPath=${workspaceFolder}/extension"
],
+ "outFiles": ["${workspaceFolder}/extension/out/**/*.js"],
"preLaunchTask": "vscode-extension:build",
"env": {
"CONTINUE_SERVER_URL": "http://localhost:8001"
@@ -77,10 +66,10 @@
"internalConsoleOptions": "openOnSessionStart",
"preLaunchTask": "vscode-extension:tests:build",
"env": {
- "CONTINUE_SERVER_URL": "http://localhost:8001",
+ "CONTINUE_SERVER_URL": "http://localhost:65432",
// Avoid timing out when stopping on breakpoints during debugging in VSCode
- "MOCHA_TIMEOUT": "0",
- },
+ "MOCHA_TIMEOUT": "0"
+ }
}
]
-} \ No newline at end of file
+}