Skip to content

Commit

Permalink
Updated engine to use IR for js
Browse files Browse the repository at this point in the history
  • Loading branch information
sksamuel committed Mar 6, 2021
1 parent fa24436 commit 30c7067
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion kotest-framework/kotest-framework-engine/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ kotlin {
}
}
}
js {
js(BOTH) {
browser()
nodejs()
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class TestCaseOrderTest : FunSpec() {
}
}

private class SequentialSpec : StringSpec() {
class SequentialSpec : StringSpec() {

override fun testCaseOrder() = TestCaseOrder.Sequential

Expand All @@ -38,7 +38,7 @@ private class SequentialSpec : StringSpec() {
}
}

private class LexicographicSpec : StringSpec() {
class LexicographicSpec : StringSpec() {

override fun testCaseOrder() = TestCaseOrder.Lexicographic

Expand Down

0 comments on commit 30c7067

Please sign in to comment.