[Windows] Rework Kotlin installation (#4083)

This commit is contained in:
Dibir Magomedsaygitov
2021-09-16 11:35:11 +03:00
committed by GitHub
parent db5e4084fe
commit ecfc9c43da
9 changed files with 32 additions and 14 deletions

View File

@@ -173,3 +173,11 @@ Describe "Pipx" {
"pipx --version" | Should -ReturnZeroExitCode
}
}
Describe "Kotlin" {
$kotlinPackages = @("kapt", "kotlin", "kotlinc", "kotlin-dce-js", "kotlinc-js", "kotlinc-jvm")
It "<toolName> is available" -TestCases ($kotlinPackages | ForEach-Object { @{ toolName = $_ } }) {
"$toolName -version" | Should -ReturnZeroExitCode
}
}