Hint enabling cache if not already enabled.

This commit is contained in:
Webber
2020-01-27 23:02:32 +01:00
committed by Webber Takken
parent 37d5ce498f
commit fe2311ef4b
5 changed files with 37 additions and 3 deletions

9
src/model/cache.test.js Normal file
View File

@@ -0,0 +1,9 @@
import Cache from './cache';
describe('Cache', () => {
describe('Verification', () => {
it('does not throw', () => {
expect(() => Cache.verify()).not.toThrow();
});
});
});