add another launch config for windows bun test (#8389)

This commit is contained in:
Meghan Denny
2024-01-22 19:45:39 -08:00
committed by GitHub
parent c4a60f9059
commit c52e7c57d2

10
.vscode/launch.json generated vendored
View File

@@ -390,6 +390,14 @@
"program": "${workspaceFolder}/build/bun-debug.exe",
"args": ["run", "${file}"],
"cwd": "${fileDirname}"
}
},
{
"type": "cppvsdbg",
"request": "launch",
"name": "Windows: bun test [file]",
"program": "${workspaceFolder}/build/bun-debug.exe",
"args": ["test", "${file}"],
"cwd": "${fileDirname}"
},
]
}