2022-06-07 21:59:34 +00:00
|
|
|
import Cache from './cache.ts';
|
2020-01-27 22:02:32 +00:00
|
|
|
|
2020-04-27 23:43:15 +00:00
|
|
|
jest.mock('./input');
|
|
|
|
|
|
2020-01-27 22:02:32 +00:00
|
|
|
describe('Cache', () => {
|
|
|
|
|
describe('Verification', () => {
|
|
|
|
|
it('does not throw', () => {
|
|
|
|
|
expect(() => Cache.verify()).not.toThrow();
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
});
|