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
6 changes: 6 additions & 0 deletions data/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@ android {
buildConfigField("String", "BASE_URL", "\"https://api.undabang.site/\"") // Release용 URL
}*/
}

// Room 메모리 DB 테스트에 Robolectric이 android 리소스와 Context를 제공합니다
testOptions {
unitTests.isIncludeAndroidResources = true
}
}

// Room 스키마를 파일로 남겨 마이그레이션 검증에 씁니다
Expand Down Expand Up @@ -49,6 +54,7 @@ dependencies {
implementation(libs.androidx.datastore.preferences)

testImplementation(libs.androidx.arch.core.testing)
testImplementation(libs.robolectric)

implementation(libs.appauth)

Expand Down
Loading
Loading