mirror of
https://github.com/abhigyanpatwari/GitNexus.git
synced 2026-08-28 05:25:25 +00:00
8 lines
267 B
TypeScript
8 lines
267 B
TypeScript
import { beforeEach } from 'vitest';
|
|
import '@testing-library/jest-dom/vitest';
|
|
|
|
// Reset storage between tests
|
|
beforeEach(() => {
|
|
sessionStorage.removeItem('gitnexus-llm-settings');
|
|
localStorage.removeItem('gitnexus-llm-settings'); // legacy key (migration)
|
|
});
|