Files
unity-builder/src/model/cache.test.js
2020-01-27 23:15:26 +01:00

10 lines
192 B
JavaScript

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