From 3cb893e3fec772c1a6dba563c37c61389e94e58b Mon Sep 17 00:00:00 2001 From: Konrad Jamrozik Date: Sat, 22 Jun 2024 16:54:02 -0700 Subject: [PATCH] default target turns: 110 -> 80 --- .../GameSessionControlPanel/GameSessionControlPanel.tsx | 2 +- web/test/vitest.setup.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/web/src/components/GameSessionControlPanel/GameSessionControlPanel.tsx b/web/src/components/GameSessionControlPanel/GameSessionControlPanel.tsx index 9ca1747b..98399d2d 100644 --- a/web/src/components/GameSessionControlPanel/GameSessionControlPanel.tsx +++ b/web/src/components/GameSessionControlPanel/GameSessionControlPanel.tsx @@ -24,7 +24,7 @@ export type GameSessionControlPanelProps = { } const defaultStartTurn = 1 -const defaultTargetTurn = 110 +const defaultTargetTurn = 80 export function GameSessionControlPanel( props: GameSessionControlPanelProps, diff --git a/web/test/vitest.setup.ts b/web/test/vitest.setup.ts index 714e5df1..8160aa2e 100644 --- a/web/test/vitest.setup.ts +++ b/web/test/vitest.setup.ts @@ -77,6 +77,6 @@ import.meta.env['DEBUG_PRINT_LIMIT'] = '0' // Some of this file content is based on: // https://github.com/testing-library/jest-dom#with-vitest // https://mayashavin.com/articles/test-react-components-with-vitest#extending-vitests-expect-method -// future work: extending martchers for testing +// future work: extending matchers for testing // https://vitest.dev/guide/extending-matchers.html#extending-matchers // https://www.geeksforgeeks.org/typescript-ambients-declaration/