Skip to content

Commit 3d6cfbe

Browse files
Rename log group titles to include 'Step Summary' for improved clarity in main.ps1
1 parent edacad4 commit 3d6cfbe

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

scripts/main.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ $tablefooter = @'
181181
182182
'@
183183

184-
LogGroup 'Set table for missed commands' {
184+
LogGroup 'Step Summary - Set table for missed commands' {
185185
$missedForDisplay = $tableheader
186186

187187
foreach ($item in $codeCoverage.CommandsMissed | Sort-Object -Property File, Line) {
@@ -209,7 +209,7 @@ $command
209209
$missedForDisplay += $tablefooter
210210
}
211211

212-
LogGroup 'Set table for executed commands' {
212+
LogGroup 'Step Summary - Set table for executed commands' {
213213
$executedForDisplay = $tableheader
214214

215215
foreach ($item in $codeCoverage.CommandsExecuted | Sort-Object -Property File, Line) {
@@ -237,7 +237,7 @@ $command
237237
$executedForDisplay += $tablefooter
238238
}
239239

240-
LogGroup 'Set step summary' {
240+
LogGroup 'Step Summary - Set step summary' {
241241
# Get the step summary mode from the environment variable
242242
$stepSummaryMode = $env:PSMODULE_GET_PESTERCODECOVERAGE_INPUT_StepSummary_Mode
243243
if ([string]::IsNullOrEmpty($stepSummaryMode)) {

0 commit comments

Comments
 (0)