File tree 2 files changed +3
-3
lines changed
src/PowerShellEditorServices/Services
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -106,7 +106,7 @@ public CodeLens[] ProvideCodeLenses(ScriptFile scriptFile)
106
106
continue ;
107
107
}
108
108
109
- if ( ! _configurationService . CurrentSettings . Pester . Pester5CodeLens
109
+ if ( ! _configurationService . CurrentSettings . Pester . EnableLegacyCodeLens
110
110
&& pesterSymbol . Command != PesterCommandType . Describe )
111
111
{
112
112
continue ;
Original file line number Diff line number Diff line change @@ -368,13 +368,13 @@ public PesterSettings()
368
368
369
369
public PesterSettings ( PesterSettings settings )
370
370
{
371
- Pester5CodeLens = settings . Pester5CodeLens ;
371
+ EnableLegacyCodeLens = settings . EnableLegacyCodeLens ;
372
372
}
373
373
374
374
/// <summary>
375
375
/// Whether integration features specific to Pester v5 are enabled
376
376
/// </summary>
377
- public bool Pester5CodeLens { get ; set ; }
377
+ public bool EnableLegacyCodeLens { get ; set ; }
378
378
}
379
379
380
380
/// <summary>
You can’t perform that action at this time.
0 commit comments