unity-builder/src/model/cache.test.js
2020-04-28 02:02:34 +02:00

12 lines
215 B
JavaScript

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