Files
espocrm/frontend/test/spec/test.cache.js
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');
});
});