mirror of
https://github.com/null2264/yokai.git
synced 2025-06-21 02:34:39 +00:00
test(chapter): (Re)added test for chapter recognition
This commit is contained in:
parent
497d387c4b
commit
4adddcf6ac
3 changed files with 292 additions and 3 deletions
|
@ -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"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue