We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ec6f70 commit b8709e2Copy full SHA for b8709e2
src/debug.ts
@@ -80,7 +80,7 @@ export async function debugTests(
80
81
if (debugManager.sessions.size) {
82
await Promise.all(
83
- [...debugManager.sessions].map(session => vscode.debug.stopDebugging(session))
+ [...debugManager.sessions].map(session => vscode.debug.stopDebugging(session)),
84
).catch((error) => {
85
log.error('[DEBUG] Failed to stop debugging sessions', error)
86
})
@@ -255,8 +255,8 @@ export class DebugManager {
255
}
256
257
258
- vscode.debug.onDidTerminateDebugSession(session => {
+ vscode.debug.onDidTerminateDebugSession((session) => {
259
this.sessions.delete(session)
260
261
262
-}
+}
0 commit comments