We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f97beb1 commit 2bc648eCopy full SHA for 2bc648e
test/packaging/windows/unit/packaging.tests.ps1
@@ -3,8 +3,9 @@
3
4
Describe "Packaging Module Functions" {
5
BeforeAll {
6
- Import-Module $PSScriptRoot/../../../../build.psm1 -Force
7
- Import-Module $PSScriptRoot/../../../../tools/packaging/packaging.psm1 -Force
+ $repoRoot = Join-Path $PSScriptRoot '..' '..' '..' '..'
+ Import-Module (Join-Path $repoRoot 'build.psm1') -Force
8
+ Import-Module (Join-Path $repoRoot 'tools' 'packaging' 'packaging.psm1') -Force
9
}
10
11
Context "Test-IsPreview function" {
0 commit comments