style: run prettier formatter over src and tests

This commit is contained in:
2026-06-11 20:46:00 +05:30
parent 2389d4f297
commit 6b564a4569
211 changed files with 6134 additions and 4234 deletions
+7 -1
View File
@@ -132,7 +132,13 @@ describe('Phase 5 integration', () => {
activeTabId: '/a.md',
});
// Use a buffer content that won't conflict with tab title in breadcrumb symbols
useEditorStore.setState({ buffers: new Map([['/a.md', { id: '/a.md', path: '/a.md', content: '# Hello', dirty: false }], ['/b.md', { id: '/b.md', path: '/b.md', content: '# World', dirty: false }]]), activeId: '/a.md' });
useEditorStore.setState({
buffers: new Map([
['/a.md', { id: '/a.md', path: '/a.md', content: '# Hello', dirty: false }],
['/b.md', { id: '/b.md', path: '/b.md', content: '# World', dirty: false }],
]),
activeId: '/a.md',
});
render(<AppShell />);
// Use role="tab" to find tabs specifically, avoiding breadcrumb "a.md" text
const tabs = screen.getAllByRole('tab');