mirror of
https://github.com/cypress-io/cypress.git
synced 2026-03-10 02:28:52 -05:00
Adding compound debug configuration (#3238)
* Adding compound debug configuration * remove trailing commas from JSON Co-authored-by: Jennifer Shehane <jennifer@cypress.io>
This commit is contained in:
committed by
Jennifer Shehane
parent
db0a65ee7f
commit
da61de8479
21
.vscode/launch.json
vendored
21
.vscode/launch.json
vendored
@@ -14,7 +14,7 @@
|
||||
"runtimeExecutable": "npm",
|
||||
"runtimeArgs": [
|
||||
"run",
|
||||
"test-debug-package",
|
||||
"test-debug-package"
|
||||
],
|
||||
"args": [
|
||||
"${file}"
|
||||
@@ -26,7 +26,24 @@
|
||||
"type": "node",
|
||||
"request": "attach",
|
||||
"name": "electron",
|
||||
"port": 5567,
|
||||
"port": 5567
|
||||
},
|
||||
{
|
||||
"type": "node",
|
||||
"request": "launch",
|
||||
"name": "dev-debug",
|
||||
"port": 5566,
|
||||
"runtimeExecutable": "npm",
|
||||
"runtimeArgs": [
|
||||
"run",
|
||||
"dev-debug"
|
||||
]
|
||||
}
|
||||
],
|
||||
"compounds": [
|
||||
{
|
||||
"name": "dev-debug w/ electron",
|
||||
"configurations": ["dev-debug", "electron"]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user