test(chapter): (Re)added test for chapter recognition

This commit is contained in:
Ahmad Ansori Palembani 2024-08-16 08:49:01 +07:00
parent 497d387c4b
commit 4adddcf6ac
Signed by: null2264
GPG key ID: BA64F8B60AF3EFB6
3 changed files with 292 additions and 3 deletions

View file

@ -7,12 +7,18 @@ plugins {
kotlin {
androidTarget()
sourceSets {
val commonMain by getting {
commonMain {
dependencies {
implementation(projects.source.api)
}
}
val androidMain by getting {
commonTest {
dependencies {
implementation(libs.bundles.test)
implementation(kotlinx.coroutines.test)
}
}
androidMain {
dependencies {
}
}
@ -21,4 +27,8 @@ kotlin {
android {
namespace = "yokai.domain"
defaultConfig {
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}
}