This repository has been archived on 2026-07-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
espocrm-base/frontend/test/spec/test.cache.js
T
Yuri Kuznetsov 99195313c5 add frontend
2014-04-11 11:44:02 +03:00

16 lines
248 B
JavaScript

var Espo = Espo || {};
describe("Cache", function () {
var cache;
beforeEach(function () {
cache = new Espo.Cache();
});
it('should have \'espo-cache\' prefix', function () {
expect(cache._prefix).toBe('espo-cache');
});
});