Skip to content

Commit

Permalink
fix(game-board): enable showPossibleMoves in test
Browse files Browse the repository at this point in the history
  • Loading branch information
atomgomba committed Dec 13, 2024
1 parent d2fcff9 commit 33e7a73
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,11 @@ internal class GameBoardRendererTest {

@Test
fun `renderToState works correctly`() {
val initModel = GameBoardModel()
val initModel = GameBoardModel(
boardDisplayOptions = BoardDisplayOptions.Default.copy(
showPossibleMoves = true,
),
)

val result = subject.renderState(initModel)

Expand Down

0 comments on commit 33e7a73

Please sign in to comment.