fix: optimize git log actions

This commit is contained in:
2026-02-17 13:24:25 +01:00
parent b13eba025a
commit 449374b79f
4 changed files with 76 additions and 23 deletions

View File

@@ -167,6 +167,12 @@ describe('AppStore', () => {
expect(getStore().preferredEditorMode).toBe('markdown');
});
it('should set active panel tab', () => {
getStore().setPanelActiveTab('output');
expect(getStore().panelActiveTab).toBe('output');
});
it('should default git diff preferences to wrapped inline and visible unchanged regions', () => {
expect(getStore().gitDiffPreferences).toEqual({
wordWrap: true,