Skip to content

Commit b8709e2

Browse files
committed
chore: lint
1 parent 1ec6f70 commit b8709e2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/debug.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ export async function debugTests(
8080

8181
if (debugManager.sessions.size) {
8282
await Promise.all(
83-
[...debugManager.sessions].map(session => vscode.debug.stopDebugging(session))
83+
[...debugManager.sessions].map(session => vscode.debug.stopDebugging(session)),
8484
).catch((error) => {
8585
log.error('[DEBUG] Failed to stop debugging sessions', error)
8686
})
@@ -255,8 +255,8 @@ export class DebugManager {
255255
}
256256
})
257257

258-
vscode.debug.onDidTerminateDebugSession(session => {
258+
vscode.debug.onDidTerminateDebugSession((session) => {
259259
this.sessions.delete(session)
260260
})
261261
}
262-
}
262+
}

0 commit comments

Comments
 (0)