mirror of
https://github.com/game-ci/unity-builder.git
synced 2025-07-04 12:25:19 -04:00
12 lines
215 B
JavaScript
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();
|
|
});
|
|
});
|
|
});
|