File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ import vscode = require("vscode");
77import Window = vscode . window ;
88import { IFeature , LanguageClient } from "../feature" ;
99import { SessionManager } from "../session" ;
10+ import Settings = require( "../settings" ) ;
1011import utils = require( "../utils" ) ;
1112
1213export class PesterTestsFeature implements IFeature {
@@ -33,6 +34,7 @@ export class PesterTestsFeature implements IFeature {
3334 private launchTests ( uriString , runInDebugger , describeBlockName ?) {
3435 const uri = vscode . Uri . parse ( uriString ) ;
3536 const currentDocument = vscode . window . activeTextEditor . document ;
37+ const settings = Settings . load ( ) ;
3638
3739 const launchConfig = {
3840 request : "launch" ,
@@ -47,6 +49,7 @@ export class PesterTestsFeature implements IFeature {
4749 ] ,
4850 internalConsoleOptions : "neverOpen" ,
4951 noDebug : ! runInDebugger ,
52+ createTemporaryIntegratedConsole : settings . debugging . createTemporaryIntegratedConsole ,
5053 cwd :
5154 currentDocument . isUntitled
5255 ? vscode . workspace . rootPath
Original file line number Diff line number Diff line change @@ -235,7 +235,7 @@ export class SessionManager implements Middleware {
235235 this . debugSessionProcess =
236236 new PowerShellProcess (
237237 this . powerShellExePath ,
238- "[DBG ] PowerShell Integrated Console" ,
238+ "[TEMP ] PowerShell Integrated Console" ,
239239 this . log ,
240240 this . editorServicesArgs + "-DebugServiceOnly " ,
241241 sessionPath ,
You can’t perform that action at this time.
0 commit comments