unity-builder/src/model/cache.test.ts

12 lines
215 B
TypeScript
Raw Normal View History

import Cache from './cache';
2020-04-27 23:43:15 +00:00
jest.mock('./input');
describe('Cache', () => {
describe('Verification', () => {
it('does not throw', () => {
expect(() => Cache.verify()).not.toThrow();
});
});
});