assert.ok(awaitdebug.startDebugging(undefined,config),"Debug session should start");
455
+
assert.equal((awaitstartDebugSession).name,config.name,"Debug session name should match when started");
464
456
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");
457
+
awaitdebug.stopDebugging(awaitstartDebugSession);
458
+
assert.ok(awaitstopDebugSession,"Debug session should stop");
459
+
assert.equal((awaitstopDebugSession).name,config.name,"Debug session name should match when stopped");
460
+
assert.equal((awaitstopDebugSession).configuration.internalConsoleOptions,"neverOpen","Debug session should always have neverOpen internalConsoleOptions");
468
461
});
469
462
470
463
describe("Binary Modules",()=>{
Original file line number
Diff line number
Diff line change
@@ -73,7 +73,6 @@ describe("ISE compatibility feature", function () {
73
73
});
74
74
75
75
describe("Color theme interactions",function(){
76
-
this.slow(4000);
77
76
beforeEach(enableISEMode);
78
77
79
78
functionassertISESettings(): void{
Original file line number
Diff line number
Diff line change
@@ -40,7 +40,6 @@ describe("RunCode feature", function () {
40
40
});
41
41
42
42
it("Runs Pester tests from a file",asyncfunction(){
0 commit comments