analytics / assets /test-utils /reset-state.ts
Leon4gr45's picture
Upload folder using huggingface_hub (part 2)
936b397 verified
Raw
History Blame Contribute Delete
213 Bytes
/**
* @returns clears the state that the app stores,
* to avoid individual tests impacting each other
*/
function clearStoredAppState() {
localStorage.clear()
}
beforeEach(() => {
clearStoredAppState()
})