File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
src/PowerShellEditorServices/Services Expand file tree Collapse file tree 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 @@ -371,13 +371,13 @@ public PesterSettings()
371
371
372
372
public PesterSettings ( PesterSettings settings )
373
373
{
374
- Pester5CodeLens = settings . Pester5CodeLens ;
374
+ EnableLegacyCodeLens = settings . EnableLegacyCodeLens ;
375
375
}
376
376
377
377
/// <summary>
378
378
/// Whether integration features specific to Pester v5 are enabled
379
379
/// </summary>
380
- public bool Pester5CodeLens { get ; set ; }
380
+ public bool EnableLegacyCodeLens { get ; set ; }
381
381
}
382
382
383
383
/// <summary>
You can’t perform that action at this time.
0 commit comments