analytics/assets/test-utils/reset-state.ts

12 lines
213 B
TypeScript

/**
* @returns clears the state that the app stores,
* to avoid individual tests impacting each other
*/
function clearStoredAppState() {
localStorage.clear()
}
beforeEach(() => {
clearStoredAppState()
})