You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
assert.ok(awaitdebug.startDebugging(undefined,config),"Debug session should start");
458
+
assert.equal((awaitstartDebugSession).name,config.name,"Debug session name should match when started");
464
459
465
-
assert.equal(stopDebugSession!.name,interactiveSessionConfig.name,"Debug session name should match when stopped");
466
-
assert.equal(stopDebugSession!.configuration.internalConsoleOptions,"neverOpen","Debug session should always have neverOpen internalConsoleOptions");
467
-
assert.ok(stopDebugSession!,"Debug session should stop");
460
+
awaitdebug.stopDebugging(awaitstartDebugSession);
461
+
assert.ok(awaitstopDebugSession,"Debug session should stop");
462
+
assert.equal((awaitstopDebugSession).name,config.name,"Debug session name should match when stopped");
463
+
assert.equal((awaitstopDebugSession).configuration.internalConsoleOptions,"neverOpen","Debug session should always have neverOpen internalConsoleOptions");
0 commit comments