fix(test): add global preload for session state reset

This commit is contained in:
justsisyphus
2026-01-17 17:08:55 +09:00
parent fa9bf4590c
commit b7b5737f9c
2 changed files with 8 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
import { beforeEach } from "bun:test"
import { _resetForTesting } from "./src/features/claude-code-session-state/state"
beforeEach(() => {
_resetForTesting()
})