mirror of
https://github.com/espocrm/espocrm.git
synced 2026-07-01 08:26:04 +00:00
16 lines
248 B
JavaScript
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');
|
|
});
|
|
|
|
|
|
});
|