test: vscode test config error (#783)

This commit is contained in:
zhangyuantao
2025-03-29 19:40:59 +08:00
committed by GitHub
parent 9f4b8ebb00
commit 53060c817a

14
.vscode/launch.json vendored
View File

@@ -9,12 +9,7 @@
"request": "launch",
"name": "Egg Debug",
"runtimeExecutable": "npm",
"runtimeArgs": [
"run",
"dev",
"--",
"--inspect-brk"
],
"runtimeArgs": ["run", "dev", "--", "--inspect-brk"],
"console": "integratedTerminal",
"restart": true,
"autoAttachChildProcesses": true
@@ -24,12 +19,7 @@
"request": "launch",
"name": "Egg Test",
"runtimeExecutable": "npm",
"runtimeArgs": [
"run",
"test-local",
"--",
"--inspect-brk"
],
"runtimeArgs": ["run", "test:local", "--", "--inspect-brk"],
"autoAttachChildProcesses": true
}
]