From c56ab8cf1dc21e45c3fde4736a6e65881b57dc66 Mon Sep 17 00:00:00 2001 From: Hiroshiba Date: Sun, 21 Jul 2024 00:12:54 +0900 Subject: [PATCH] =?UTF-8?q?=E3=83=A1=E3=83=A2=E3=81=8C=E6=AE=8B=E3=81=A3?= =?UTF-8?q?=E3=81=A6=E3=81=84=E3=81=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/unit/store/command.spec.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tests/unit/store/command.spec.ts b/tests/unit/store/command.spec.ts index 3a06f661da..4ee14a1068 100644 --- a/tests/unit/store/command.spec.ts +++ b/tests/unit/store/command.spec.ts @@ -14,10 +14,6 @@ test("コマンド実行で履歴が作られる", async () => { await store.dispatch("COMMAND_SET_AUDIO_KEYS", { audioKeys: [AudioKey(uuid4())], }); - - // npm run test-watch:unit -- "tests\unit\store\command.spec.ts" - // millisecをrandomUuidにし、かつrandomUuidをmockにする - const { audioKeys, redoCommands, undoCommands } = store.state; expect({ audioKeys, redoCommands, undoCommands }).toMatchSnapshot(); });