Files
biteplan/tests/setup.js
T

6 lines
196 B
JavaScript
Raw Normal View History

import { beforeEach, afterEach } from 'vitest'
// Svuota localStorage prima e dopo ogni test per garantire isolamento
beforeEach(() => localStorage.clear())
afterEach(() => localStorage.clear())