@@ -178,7 +178,8 @@ describe("DebugSessionFeature", () => {
178178 assert . match ( logger . writeAndShowError . firstCall . args [ 0 ] , / d e b u g g i n g t h i s l a n g u a g e m o d e / ) ;
179179 } ) ;
180180
181- it ( "LaunchScript: Rejects scripts without a powershell script extension" , async ( ) => {
181+ // Skipped until we can fix the stub
182+ it . skip ( "LaunchScript: Rejects scripts without a powershell script extension" , async ( ) => {
182183 const currentDocConfig : DebugConfiguration = defaultDebugConfig ;
183184 currentDocConfig . current_document = true ;
184185 currentDocConfig . script = "file:///notPowerShell.txt" ;
@@ -223,7 +224,8 @@ describe("DebugSessionFeature", () => {
223224 assert . ok ( sessionManager . getPowerShellVersionDetails . calledOnce ) ;
224225 } ) ;
225226
226- it ( "Attach: Prevents attach on non-windows if not PS7.0 or higher" , async ( ) => {
227+ // Skipped until we can fix the stub
228+ it . skip ( "Attach: Prevents attach on non-windows if not PS7.0 or higher" , async ( ) => {
227229 const attachConfig : DebugConfiguration = defaultDebugConfig ;
228230 attachConfig . request = "attach" ;
229231 const logger = Sinon . stub ( testLogger ) ;
0 commit comments