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

14 lines
229 B
TypeScript
Raw Normal View History

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