CLOVIS
02/05/2023, 9:00 PM$ ./gradlew jvmTest jsBrowserTest
> Task :jvmTest
io.kotest.examples.mpp.UUIDJvmTest[jvm] > uuids should be in be type 4 format[jvm] PASSED
io.kotest.examples.mpp.data.DataDrivenTest[jvm] > PythagTriple(a=3, b=4, c=5)[jvm] PASSED
io.kotest.examples.mpp.data.DataDrivenTest[jvm] > PythagTriple(a=6, b=8, c=10)[jvm] PASSED
io.kotest.examples.mpp.uuid.UUIDTestCommon[jvm] > uuids should be somewhat unique![jvm] PASSED
Deprecated Gradle features were used in this build, making it incompatible with Gradle 8.0.
Emil Kantis
02/05/2023, 9:48 PMbuild/reports/test/jsTest
and build/reports/test/jsBrowserTest
if I run the tasks.. So guessing something is wrong with console reportingAdam S
02/05/2023, 10:29 PMtasks.named<Test>("jvmTest") {
to tasks.withType<Test>().configureEach {
CLOVIS
02/06/2023, 8:30 AMAdam S
02/06/2023, 8:42 AMEmil Kantis
02/06/2023, 8:44 AMAdam S
02/06/2023, 8:45 AMCLOVIS
02/06/2023, 8:46 AMAdam S
02/06/2023, 9:00 AMtasks.withType<Test>().configureEach {
testLogging {
showExceptions = true
showStandardStreams = true
events = setOf(
org.gradle.api.tasks.testing.logging.TestLogEvent.FAILED,
org.gradle.api.tasks.testing.logging.TestLogEvent.PASSED,
org.gradle.api.tasks.testing.logging.TestLogEvent.STANDARD_OUT,
)
exceptionFormat = org.gradle.api.tasks.testing.logging.TestExceptionFormat.FULL
}
}
does adding this change anything @CLOVIS?CLOVIS
02/06/2023, 9:14 AMmaster
branch of the demo, if you want to test yourselfEmil Kantis
02/06/2023, 10:19 PMrobstoll
02/09/2023, 8:32 PMCLOVIS
02/09/2023, 10:56 PMEmil Kantis
02/09/2023, 11:22 PMCaused by: java.lang.NoSuchMethodError: 'void org.gradle.api.internal.tasks.testing.TestResultProcessor.failure(java.lang.Object, java.lang.Throwable)'
at org.jetbrains.kotlin.gradle.internal.testing.TCServiceMessagesClient.failure(TCServiceMessagesClient.kt:176)
at org.jetbrains.kotlin.gradle.internal.testing.TCServiceMessagesClient.ensureNodesClosed(TCServiceMessagesClient.kt:530)
at org.jetbrains.kotlin.gradle.internal.testing.TCServiceMessagesTestExecutor$execute$1.invoke(TCServiceMessagesTestExecutor.kt:81)
at org.jetbrains.kotlin.gradle.internal.testing.TCServiceMessagesTestExecutor$execute$1.invoke(TCServiceMessagesTestExecutor.kt:46)
at org.jetbrains.kotlin.gradle.internal.testing.TCServiceMessagesTestExecutionSpec.wrapExecute$kotlin_gradle_plugin(TCServiceMessagesTestExecutor.kt:28)
at org.jetbrains.kotlin.gradle.internal.testing.TCServiceMessagesTestExecutor.execute(TCServiceMessagesTestExecutor.kt:46)
at org.jetbrains.kotlin.gradle.internal.testing.TCServiceMessagesTestExecutor.execute(TCServiceMessagesTestExecutor.kt:34)
at org.gradle.api.tasks.testing.AbstractTestTask.executeTests(AbstractTestTask.java:495)
at org.jetbrains.kotlin.gradle.targets.js.testing.KotlinJsTest.executeTests(KotlinJsTest.kt:155)
Trying to bump Kotlin version to see if it helpsCLOVIS
02/10/2023, 10:35 AMEmil Kantis
02/10/2023, 11:12 AMCLOVIS
02/10/2023, 11:14 AMEmil Kantis
02/10/2023, 11:17 AMCLOVIS
02/10/2023, 11:18 AMEmil Kantis
02/10/2023, 11:25 AM