feat: complete master feature parity with interactive PDF editing, Reveal.js export dialog, Large File Mode, and scoped CSS

This commit is contained in:
2026-06-15 01:22:17 +05:30
parent 7eb90d467a
commit 36422a9ab3
18 changed files with 917 additions and 66 deletions
+2 -4
View File
@@ -7,10 +7,8 @@ import { useAppStore } from '@/stores/app-store';
describe('AboutDialog', () => {
beforeEach(() => {
window.electronAPI = {
app: {
getVersion: vi.fn().mockResolvedValue('5.0.0'),
openExternal: vi.fn().mockResolvedValue({ ok: true }),
},
getAppVersion: vi.fn().mockResolvedValue('5.0.0'),
send: vi.fn().mockResolvedValue({ ok: true }),
} as any;
// Reset store to about modal so dialog renders
useAppStore.setState({ modal: { kind: 'about' } } as any);