Skip to content

Commit

Permalink
fix: boardServiceTest BeforeEach 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
wjdtkdgns committed Aug 14, 2024
1 parent 4b391c9 commit 7b07a3c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion api/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ tasks.getByName("bootJar") {
}

tasks.getByName("jar") {
enabled = false
enabled = true
}

springBoot.buildInfo { properties { } }
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import io.kotest.matchers.equals.shouldBeEqual
import io.mockk.every
import io.mockk.mockk
import kotlinx.coroutines.CoroutineExceptionHandler
import kotlinx.coroutines.delay

class BoardServiceTest : DescribeSpec({
val logger = KotlinLogging.logger { }
Expand All @@ -25,6 +26,8 @@ class BoardServiceTest : DescribeSpec({

beforeSpec {
boardService.refreshBoards()

delay(100)
}

describe("scheduler") {
Expand Down

0 comments on commit 7b07a3c

Please sign in to comment.