12 lines
215 B
TypeScript
12 lines
215 B
TypeScript
|
import Cache from './cache';
|
||
|
|
||
|
jest.mock('./input');
|
||
|
|
||
|
describe('Cache', () => {
|
||
|
describe('Verification', () => {
|
||
|
it('does not throw', () => {
|
||
|
expect(() => Cache.verify()).not.toThrow();
|
||
|
});
|
||
|
});
|
||
|
});
|