()
| 42 | }; |
| 43 | |
| 44 | const clearStores = () => { |
| 45 | window.localStorage.clear(); |
| 46 | window.sessionStorage.clear(); |
| 47 | stores.memory.clear(); |
| 48 | // clear all record of having tested the stores |
| 49 | delete stores.local; |
| 50 | delete stores.session; |
| 51 | }; |
| 52 | |
| 53 | const layoutA = storeType => ({ |
| 54 | namespace: 'my_components', |
no test coverage detected
searching dependent graphs…