We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d26c85 commit 3ec2481Copy full SHA for 3ec2481
Examples/InteractWithOtherModules/Pester/Analyze_that.ps1
@@ -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
Examples/ScriptAnalyzer/Analyze_this.ps1 Examples/InteractWithOtherModules/ScriptAnalyzer/Analyze_this.ps1
0 commit comments