Skip to content

Commit

Permalink
unit test for Windows GraalVM
Browse files Browse the repository at this point in the history
  • Loading branch information
hubertp committed Mar 15, 2023
1 parent adc5654 commit 00967f2
Showing 1 changed file with 13 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,19 @@ class GraalVMComponentConfigurationSpec extends AnyWordSpec with Matchers {
OS.Linux
) should contain theSameElementsAs requiredAbove22

conf.getRequiredComponents(
GraalVMVersion("22.3.0", "11"),
OS.MacOS
) should contain theSameElementsAs requiredAbove22

conf.getRequiredComponents(
GraalVMVersion("22.3.0", "11"),
OS.Windows
) should contain theSameElementsAs Seq(
GraalVMComponent.js,
GraalVMComponent.R
)

conf.getRequiredComponents(
GraalVMVersion("20.0.0.0", "11"),
OS.Linux
Expand Down

0 comments on commit 00967f2

Please sign in to comment.