changelog update + Pester test fix for powershell 5.1

This commit is contained in:
Thomas Hofkens
2022-11-14 17:54:15 +01:00
parent 81ece62494
commit 3ea6fde928
2 changed files with 9 additions and 3 deletions

View File

@@ -1,11 +1,12 @@
Describe "Test reading relative paths" {
BeforeAll {
$script:xlfileName = "TestR.xlsx"
@{data = 1 } | Export-Excel (Join-Path $PWD "TestR.xlsx")
If ([String]::IsNullOrEmpty($PWD)) { $PWD = $PSScriptRoot }
@{data = 1 } | Export-Excel (Join-Path $PWD "TestR.xlsx")
}
AfterAll {
Remove-Item (Join-Path $PWD "$($script:xlfileName)")
Remove-Item (Join-Path $PWD "$($script:xlfileName)")
}
It "Should read local file".PadRight(90) {

View File

@@ -1,6 +1,11 @@
# 7.8.3
- Extended Export-Excel with parameter TableTotalSettings. Thank you [Thomas Hofkens](https://github.com/thkn-hofa)
Thanks [Thomas Hofkens](https://github.com/thkn-hofa)
- Extended Export-Excel with parameter TableTotalSettings
- New Feature: Set-CellComment
- Fix Pester error for countries with ',' as decimal separator
- Fix Pester error for Windows PowerShell 5.1
# 7.8.2