[windows] Add Kotlin (#3784)

This commit is contained in:
mikhailshaganov
2021-08-04 12:19:55 +03:00
committed by GitHub
parent 33004045dd
commit 5ece292613
5 changed files with 17 additions and 1 deletions

View File

@@ -96,4 +96,12 @@ Describe "CMake" {
It "cmake" {
"cmake --version" | Should -ReturnZeroExitCode
}
}
Describe "Kotlin" {
$kotlinPackages = @("kotlinc", "kotlinc-js", "kotlinc-jvm")
It "<toolName> is available" -TestCases ($kotlinPackages | ForEach-Object { @{ toolName = $_ } }) {
"$toolName -version" | Should -ReturnZeroExitCode
}
}