Skip to content

Commit

Permalink
fix mac test
Browse files Browse the repository at this point in the history
  • Loading branch information
mikhailshaganov committed Jul 26, 2021
1 parent 1a28adb commit fa109f6
Showing 1 changed file with 3 additions and 22 deletions.
25 changes: 3 additions & 22 deletions images/macos/tests/BasicTools.Tests.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -169,27 +169,8 @@ Describe "Homebrew" {
}

Describe "Kotlin" {
It "kapt" {
"kapt -version" | Should -ReturnZeroExitCode
}

It "kotlin" {
"kotlin -version" | Should -ReturnZeroExitCode
}

It "kotlinc" {
"kotlinc -version" | Should -ReturnZeroExitCode
}

It "kotlinc-js" {
"kotlinc-js -version" | Should -ReturnZeroExitCode
}

It "kotlinc-jvm" {
"kotlinc-jvm -version" | Should -ReturnZeroExitCode
}

It "kotlin-dce-js" {
"kotlin-dce-js -version" | Should -ReturnZeroExitCode
$kotlinPackages = @("kapt", "kotlin", "kotlinc", "kotlinc-js", "kotlinc-jvm", "kotlin-dce-js")
It -TestCases ($kotlinPackages | ForEach-Object { { Name = $_ } }) {
"$Name -version" | Should -ReturnZeroExitCode
}
}

0 comments on commit fa109f6

Please sign in to comment.