2
Fork 0

Added clearCache function

This commit is contained in:
Willem 2016-01-24 19:44:00 +01:00
parent 191ad1e4ee
commit 4fbf705ae5
4 changed files with 75 additions and 15 deletions

View file

@ -22,5 +22,11 @@ describe('Check module exports', function() {
it('FFSpaLoader.clearServerUrl should be function', function() {
assert.equal(true, typeof FFSpaLoader.clearServerUrl === 'function');
});
it('FFSpaLoader.clearCache should be defined', function() {
assert.equal(false, FFSpaLoader.clearCache === undefined);
});
it('FFSpaLoader.clearCache should be function', function() {
assert.equal(true, typeof FFSpaLoader.clearCache === 'function');
});
});