Skip to content

Commit

Permalink
Added jupiter runtime to work around IntelliJ test runner bug
Browse files Browse the repository at this point in the history
  • Loading branch information
jlink committed Jul 10, 2023
1 parent 2493905 commit facd777
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
3 changes: 2 additions & 1 deletion engine/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,8 @@ dependencies {
testImplementation("org.junit.platform:junit-platform-launcher:${junitPlatformVersion}")
testImplementation("org.junit.platform:junit-platform-testkit:${junitPlatformVersion}")

// Only needed to check interferences between Jupiter and jqwik
// Needed to check interferences between Jupiter and jqwik
// And works around an annoying bug in IntelliJ running tests on packages
testImplementation("org.junit.jupiter:junit-jupiter:${junitJupiterVersion}")

testImplementation("com.github.stefanbirkner:system-lambda:${systemLambdaVersion}")
Expand Down
3 changes: 3 additions & 0 deletions time/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,9 @@ dependencies {

testImplementation(project(":testing"))

// Works around an annoying bug in IntelliJ running tests on packages
testImplementation("org.junit.jupiter:junit-jupiter:${junitJupiterVersion}")

testImplementation("org.assertj:assertj-core:${assertJVersion}")
testRuntimeOnly(project(":engine"))
}
3 changes: 3 additions & 0 deletions web/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,9 @@ dependencies {

testImplementation(project(":testing"))

// Works around an annoying bug in IntelliJ running tests on packages
testImplementation("org.junit.jupiter:junit-jupiter:${junitJupiterVersion}")

// To verify generated email addresses
testImplementation('com.github.seancfoley:ipaddress:5.4.0')

Expand Down

0 comments on commit facd777

Please sign in to comment.