Skip to content

Commit 2824d39

Browse files
committed
Add a second thread
1 parent 196fef7 commit 2824d39

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/mockDebug.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,8 @@ export class MockDebugSession extends LoggingDebugSession {
347347
// runtime supports no threads so just return a default thread.
348348
response.body = {
349349
threads: [
350-
new Thread(MockDebugSession.threadID, "thread 1")
350+
new Thread(MockDebugSession.threadID, "thread 1"),
351+
new Thread(MockDebugSession.threadID + 1, "thread 2"),
351352
]
352353
};
353354
this.sendResponse(response);

0 commit comments

Comments
 (0)