mirror of
https://github.com/amitwh/markdown-converter.git
synced 2026-08-02 18:10:18 +05:30
test(settings): update default theme expectation from 'auto' to 'system'
This commit is contained in:
@@ -10,7 +10,7 @@ describe('useSettingsStore', () => {
|
|||||||
it('has sensible defaults', () => {
|
it('has sensible defaults', () => {
|
||||||
const s = useSettingsStore.getState();
|
const s = useSettingsStore.getState();
|
||||||
expect(s.fontSize).toBe(14);
|
expect(s.fontSize).toBe(14);
|
||||||
expect(s.theme).toBe('auto');
|
expect(s.theme).toBe('system');
|
||||||
expect(s.pdfFormat).toBe('a4');
|
expect(s.pdfFormat).toBe('a4');
|
||||||
expect(s.docxTemplate).toBe('standard');
|
expect(s.docxTemplate).toBe('standard');
|
||||||
expect(s.renderTablesAsAscii).toBe(false);
|
expect(s.renderTablesAsAscii).toBe(false);
|
||||||
@@ -27,7 +27,7 @@ describe('useSettingsStore', () => {
|
|||||||
useSettingsStore.getState().setSetting('theme', 'dark');
|
useSettingsStore.getState().setSetting('theme', 'dark');
|
||||||
useSettingsStore.getState().resetToDefaults();
|
useSettingsStore.getState().resetToDefaults();
|
||||||
expect(useSettingsStore.getState().fontSize).toBe(14);
|
expect(useSettingsStore.getState().fontSize).toBe(14);
|
||||||
expect(useSettingsStore.getState().theme).toBe('auto');
|
expect(useSettingsStore.getState().theme).toBe('system');
|
||||||
});
|
});
|
||||||
|
|
||||||
it('persists only leaf settings (partialize), not actions', () => {
|
it('persists only leaf settings (partialize), not actions', () => {
|
||||||
|
|||||||
Reference in New Issue
Block a user