diff --git a/tests/unit/domain/hotkeyAction.spec.ts b/tests/unit/domain/hotkeyAction.spec.ts index 6779aaccf1..9d1f90e397 100644 --- a/tests/unit/domain/hotkeyAction.spec.ts +++ b/tests/unit/domain/hotkeyAction.spec.ts @@ -1,9 +1,10 @@ import { - defaultHotkeySettings, + getDefaultHotkeySettings, hotkeyActionNameSchema, } from "@/domain/hotkeyAction"; test("すべてのホットキーに初期値が設定されている", async () => { + const defaultHotkeySettings = getDefaultHotkeySettings(false); const allActionNames = new Set(hotkeyActionNameSchema.options); const defaultHotkeyActionsNames = new Set( defaultHotkeySettings.map((setting) => setting.action),