Skip to content

Commit

Permalink
Update JSON schema test-suite (#200)
Browse files Browse the repository at this point in the history
Automated update

---------

Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
OptimumCode and github-actions[bot] authored Sep 22, 2024
1 parent 7203506 commit a2b16bd
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package io.github.optimumcode.json.schema.suite.draft2020_12

import io.github.optimumcode.json.schema.suite.COMMON_FORMAT_FILTER
import io.github.optimumcode.json.schema.suite.TestFilter
import io.github.optimumcode.json.schema.suite.runTestSuites
import io.kotest.core.spec.style.FunSpec

Expand All @@ -9,7 +9,14 @@ internal class TestSuite : FunSpec() {
init {
runTestSuites(
draftName = "draft2020-12",
formatFilter = COMMON_FORMAT_FILTER,
formatFilter =
TestFilter(
excludeSuites =
mapOf(
// Kotlin regex is not ECMA script
"ecmascript-regex" to setOf(),
),
),
)
}
}

0 comments on commit a2b16bd

Please sign in to comment.