feat(m1): playable loop — story graph, story panel, queue UI #14

Merged
ginnoir merged 20 commits from feat/m1-playable-loop into main 2026-06-11 19:26:54 -05:00
Showing only changes of commit 8d83f9899b - Show all commits
+3 -3
View File
@@ -3,13 +3,13 @@ import { getPrefs, setPrefs } from '../prefs';
describe('prefs', () => { describe('prefs', () => {
beforeEach(() => { beforeEach(() => {
const store: Record<string, string> = {};
vi.stubGlobal('localStorage', { vi.stubGlobal('localStorage', {
store: {} as Record<string, string>,
getItem(key: string) { getItem(key: string) {
return this.store[key] ?? null; return store[key] ?? null;
}, },
setItem(key: string, value: string) { setItem(key: string, value: string) {
this.store[key] = value; store[key] = value;
}, },
}); });
}); });