Skip to content

Commit 3ec2481

Browse files
committed
Added Pivoting Pester Test Results
1 parent 2d26c85 commit 3ec2481

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
param(
2+
$PesterTestsPath = "$PSScriptRoot\..\..\..\__tests__\"
3+
)
4+
5+
$xlfile = "$env:Temp\testResults.xlsx"
6+
Remove-Item $xlfile -ErrorAction SilentlyContinue
7+
8+
$xlparams = @{
9+
Path = $xlfile
10+
InputObject = (Invoke-Pester -Script $PesterTestsPath -PassThru).TestResult | Sort-Object describe
11+
WorksheetName = 'FullResults'
12+
13+
IncludePivotTable = $true
14+
PivotRows = 'Describe'
15+
PivotColumns = 'Passed'
16+
PivotData = @{'Passed' = 'Count' }
17+
18+
IncludePivotChart = $true
19+
ChartType = 'BarClustered'
20+
21+
AutoSize = $true
22+
AutoFilter = $true
23+
Activate = $true
24+
}
25+
26+
Export-Excel -Show @xlparams

0 commit comments

Comments
 (0)