@@ -376,9 +376,9 @@ describe("DebugSessionFeature", () => {
376
376
sessionManager : sessionManager ,
377
377
} ) ;
378
378
379
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
380
379
const pickPSHostProcessStub = Sinon . stub (
381
380
debugSessionFeatureStub ,
381
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
382
382
"pickPSHostProcess" as any ,
383
383
) . resolves ( 7357 ) ;
384
384
@@ -408,9 +408,9 @@ describe("DebugSessionFeature", () => {
408
408
sessionManager : sessionManager ,
409
409
} ) ;
410
410
411
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
412
411
const pickPSHostProcessStub = Sinon . stub (
413
412
debugSessionFeatureStub ,
413
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
414
414
"pickPSHostProcess" as any ,
415
415
) . resolves ( undefined ) ;
416
416
@@ -439,9 +439,9 @@ describe("DebugSessionFeature", () => {
439
439
sessionManager : sessionManager ,
440
440
} ) ;
441
441
442
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
443
442
const pickRunspaceStub = Sinon . stub (
444
443
debugSessionFeatureStub ,
444
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
445
445
"pickRunspace" as any ,
446
446
) . resolves ( TEST_NUMBER ) ;
447
447
@@ -470,9 +470,9 @@ describe("DebugSessionFeature", () => {
470
470
sessionManager : sessionManager ,
471
471
} ) ;
472
472
473
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
474
473
const pickRunspaceStub = Sinon . stub (
475
474
debugSessionFeatureStub ,
475
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
476
476
"pickRunspace" as any ,
477
477
) . resolves ( undefined ) ;
478
478
@@ -599,9 +599,9 @@ describe("DebugSessionFeature", () => {
599
599
attachConfig . dotnetDebuggerConfigName = foundDotnetConfig . name ;
600
600
const debugSessionFeature = createDebugSessionFeatureStub ( { } ) ;
601
601
602
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
603
602
Sinon . stub (
604
603
debugSessionFeature ,
604
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
605
605
"getLaunchConfigurations" as any ,
606
606
) . returns ( candidateDotnetConfigs ) ;
607
607
0 commit comments