Commit edd6d44 1 parent d941d54 commit edd6d44 Copy full SHA for edd6d44
File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ Write-Host "CodeCoverageOutputFile $CodeCoverageOutputFile"
53
53
Write-Host " CodeCoverageFolder $CodeCoverageFolder "
54
54
Write-Host " ScriptBlock $ScriptBlock "
55
55
56
- Import-Module - Name " $PSScriptRoot \ HelperModule.psm1" - Force
56
+ Import-Module - Name ( Join-Path $PSScriptRoot " HelperModule.psm1" ) - Force
57
57
Import-Pester - Version $TargetPesterVersion
58
58
59
59
if ($run32Bit -eq $true -and $env: Processor_Architecture -ne " x86" ) {
Original file line number Diff line number Diff line change 2
2
Describe " Testing Helper Functions" {
3
3
4
4
BeforeAll {
5
- Import-Module - Name " $PSScriptRoot \..\..\Task\ HelperModule.psm1" - Force
5
+ Import-Module - Name ( Resolve-Path " $PSScriptRoot /../../task/ HelperModule.psm1" ) - Force
6
6
}
7
7
Context " Testing Get-HashtableFromString" {
8
8
Original file line number Diff line number Diff line change 1
1
Describe " Testing Pester Task" {
2
2
3
3
BeforeAll {
4
- $taskPath = " $PSScriptRoot \..\..\Task "
4
+ $taskPath = Resolve-Path " $PSScriptRoot /../../task "
5
5
$sut = Join-Path - Path $taskPath - ChildPath Pester.ps1 - Resolve
6
6
}
7
7
You can’t perform that action at this time.
0 commit comments