We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0bd293b commit f6af40eCopy full SHA for f6af40e
1 file changed
Tests/Integration/Parameters.Tests.ps1
@@ -7,13 +7,13 @@ Describe "Parameters.Set in build manifest" -Tag Integration {
7
}
8
9
It "Passthru is read from the build manifest" {
10
- $Output = Build-Module "$PSScriptRoot/Parameters/build.psd1"
+ $Output = Build-Module (Convert-FolderSeparator "$PSScriptRoot/Parameters/build.psd1") -Verbose
11
$Output | Should -Not -BeNullOrEmpty
12
$Output.Path | Convert-FolderSeparator | Should -Be (Convert-FolderSeparator "$PSScriptRoot/Result3/Parameters/3.0.0/Parameters.psd1")
13
14
15
It "The Target is Build" {
16
- "$PSScriptRoot/Result3/Parameters/3.0.0/Parameters.psm1" | Should -Exist
+ Convert-FolderSeparator "$PSScriptRoot/Result3/Parameters/3.0.0/Parameters.psm1" | Should -Exist
17
18
19
It "The version is set" {
0 commit comments