We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb7ee95 commit 55a0721Copy full SHA for 55a0721
1 file changed
images/win/scripts/Tests/Haskell.Tests.ps1
@@ -49,9 +49,12 @@ Describe "Haskell" {
49
"cabal --version" | Should -ReturnZeroExitCode
50
}
51
52
- It "cabal config was modified and exists" {
53
- $env:CABAL_DIR | Should -Exist
54
- "cabal user-config diff" | Should -ReturnZeroExitCode
+ It "cabal folder does not exist" {
+ $env:CABAL_DIR | Should -Not -Exist
+ }
55
+
56
+ It "CABAL_DIR environment variable exists" {
57
+ Get-EnvironmentVariable CABAL_DIR | Should -BeExactly "C:\cabal"
58
59
60
It "ghcup is installed" {
0 commit comments