Skip to content

Commit

Permalink
Add EAP Kotlin version test.
Browse files Browse the repository at this point in the history
  • Loading branch information
terrakok committed Sep 5, 2022
1 parent d065fb9 commit 5fc1088
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/jvmTest/kotlin/org/jetbrains/webwiz/GeneratedProjectTest.kt
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,22 @@ class GeneratedProjectTest {
)
}

@Test
fun testGeneratedProjectJvmLinuxEap() {
checkProject(
ProjectInfo(
"myapp",
"app",
"org.sample.app",
KotlinVersion.EAP,
setOf(Target.JVM, Target.LINUX),
setOf(KmpLibrary.NAPIER_LOGGER, KmpLibrary.COROUTINES, KmpLibrary.DATE_TIME),
setOf(GradlePlugin.PUBLISH),
true
)
)
}

private fun checkProject(projectInfo: ProjectInfo) {
val dir = projectInfo.asDir(workingDir)

Expand Down

0 comments on commit 5fc1088

Please sign in to comment.