We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bbf6316 commit 246414eCopy full SHA for 246414e
PesterExplorer/Public/Show-PesterResult.ps1
@@ -121,12 +121,8 @@ function Show-PesterResult {
121
122
# Generate new data
123
$titlePanel = Get-TitlePanel -Item $object
124
- $panelSplat = @{
125
- List = $list
126
- SelectedItem = $selectedItem
127
- }
128
- $listPanel = Get-ListPanel @panelSplat
129
- $previewPanel = Get-PreviewPanel @panelSplat
+ $listPanel = Get-ListPanel -List $list -SelectedItem $selectedItem
+ $previewPanel = Get-PreviewPanel -Items $items -SelectedItem $selectedItem
130
131
# Update layout
132
$layout["header"].Update($titlePanel) | Out-Null
0 commit comments