mirror of
https://github.com/game-ci/unity-builder.git
synced 2026-06-01 14:26:17 -07:00
10 lines
192 B
JavaScript
10 lines
192 B
JavaScript
import Cache from './cache';
|
|
|
|
describe('Cache', () => {
|
|
describe('Verification', () => {
|
|
it('does not throw', () => {
|
|
expect(() => Cache.verify()).not.toThrow();
|
|
});
|
|
});
|
|
});
|