Skip to content

Commit

Permalink
Re-enable tests for portal (#596)
Browse files Browse the repository at this point in the history
  • Loading branch information
eygraber committed May 22, 2024
1 parent 904282a commit 5fe0f5d
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 13 deletions.
1 change: 1 addition & 0 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -67,4 +67,5 @@ test-espresso = "androidx.test.espresso:espresso-core:3.6.0-beta01"
test-compose-android-uiJunit = { module = "androidx.compose.ui:ui-test-junit4" }
test-compose-android-uiTestManifest = "androidx.compose.ui:ui-test-manifest:1.6.7"
test-junit = { module = "junit:junit", version = "4.13.2" }
test-kotest-assertions = { module = "io.kotest:kotest-assertions-core", version.ref = "kotest" }
test-robolectric = "org.robolectric:robolectric:4.12.2"
12 changes: 6 additions & 6 deletions portal-compose/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ kotlin {
}
}

// commonTest {
// dependencies {
// implementation(kotlin("test-common"))
// implementation(kotlin("test-annotations-common"))
// }
// }
commonTest {
dependencies {
implementation(kotlin("test-common"))
implementation(kotlin("test-annotations-common"))
}
}
}
}
14 changes: 7 additions & 7 deletions portal/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ kotlin {
}
}

// commonTest {
// dependencies {
// implementation(kotlin("test"))
//
// implementation(libs.test.kotest.assertions)
// }
// }
commonTest {
dependencies {
implementation(kotlin("test"))

implementation(libs.test.kotest.assertions)
}
}
}
}

0 comments on commit 5fe0f5d

Please sign in to comment.