File size: 213 Bytes
936b397
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
/**
 * @returns clears the state that the app stores,
 * to avoid individual tests impacting each other
 */
function clearStoredAppState() {
  localStorage.clear()
}

beforeEach(() => {
  clearStoredAppState()
})