Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
kmaranionjc committed Jan 31, 2024
1 parent 962dc92 commit b05da38
Show file tree
Hide file tree
Showing 2 changed files with 381 additions and 380 deletions.
3 changes: 2 additions & 1 deletion jumpcloud-ADMU/Powershell/Tests/Build.Tests.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,8 @@ Describe "Module Validation Tests" {
$ModuleChangelogVersionMatch = ($ModuleChangelogContent | Select-Object -First 1) | Select-String -Pattern:($ModuleChangelogVersionRegex)
$ModuleChangelogVersion = $ModuleChangelogVersionMatch.Matches.Value
# Compare
([version]$ModuleChangelogVersion).$($env:ModuleVersionType) | Should -Be ($lastestModule.version.$($env:ModuleVersionType) + 1)
Write-Host ([version]$lastestModule.version.$($env:ModuleVersionType) + 1)
([version]$ModuleChangelogVersion).$($env:ModuleVersionType) | Should -Be ([version]$lastestModule.version.$($env:ModuleVersionType) + 1)

}
It 'Module Changelog should not contain placeholder values' {
Expand Down
Loading

0 comments on commit b05da38

Please sign in to comment.