Skip to content

Commit b38764f

Browse files
committed
fix: missing junit4 dependency for IntelliJ test framework
We don't have any UI tests but the test task still fails because it misses junit 4 dependencies. For the unit tests we use kotlin tests library with junit 5 as a backend.
1 parent caa9c0c commit b38764f

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

build.gradle.kts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,11 @@ dependencies {
5454
implementation("org.zeroturnaround:zt-exec:1.12")
5555

5656
testImplementation(kotlin("test"))
57+
// required by the unit tests
58+
testImplementation(kotlin("test-junit5"))
59+
// required by IntelliJ test framework
60+
testImplementation("junit:junit:4.13.2")
61+
5762

5863
// IntelliJ Platform Gradle Plugin Dependencies Extension - read more: https://plugins.jetbrains.com/docs/intellij/tools-intellij-platform-gradle-plugin-dependencies-extension.html
5964
intellijPlatform {

0 commit comments

Comments
 (0)