Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ dependencyResolutionManagement {

versionCatalogs {
val kotlinWrappers by registering {
from("org.jetbrains.kotlin-wrappers:kotlin-wrappers-catalog:2025.6.7")
from("org.jetbrains.kotlin-wrappers:kotlin-wrappers-catalog:2025.8.19")
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import io.kotest.matchers.booleans.shouldBeTrue
import io.kotest.matchers.nulls.shouldNotBeNull
import io.kotest.matchers.should
import io.kotest.matchers.shouldNot
import js.promise.await
import node.buffer.BufferEncoding.Companion.utf8
import node.fs.Dir
import node.fs.exists
Expand Down Expand Up @@ -39,7 +40,7 @@ class AjvSchemaValidationTest : FunSpec({
withClue("catalogDir should be a non-empty directory") {
exists(catalogDir).shouldBeTrue()
stat(catalogDir).isDirectory().shouldBeTrue()
opendir(catalogDir).use { it.read().await().shouldNotBeNull() }
opendir(catalogDir).use { it.readAsync().await().shouldNotBeNull() }
}

validate = Ajv(AjvOptions(strict = true)).compile(
Expand Down
Loading