test(renderer): remove non-existent html property from preview-store reset

This commit is contained in:
2026-06-05 13:07:06 +05:30
parent 559d09cad9
commit d81d8c28d2
+1 -1
View File
@@ -4,7 +4,7 @@ import { usePreviewStore } from '@/stores/preview-store';
describe('usePreviewStore', () => {
beforeEach(() => {
vi.useFakeTimers();
usePreviewStore.setState({ html: '', scrollRatio: 0, source: '' });
usePreviewStore.setState({ scrollRatio: 0, source: '' });
});
it('debounces source updates (300 ms)', () => {