diff --git a/services/spelling/app/js/ASpell.js b/services/spelling/app/js/ASpell.js index bd16c2fe42..d9b61ef9e8 100644 --- a/services/spelling/app/js/ASpell.js +++ b/services/spelling/app/js/ASpell.js @@ -32,7 +32,7 @@ try { } // write the cache every 30 minutes -setInterval(function() { +const cacheDump = setInterval(function() { const dump = JSON.stringify(cache.dump()) return fs.writeFile(cacheFsPathTmp, dump, function(err) { if (err != null) { @@ -186,3 +186,4 @@ ASpell.promises = promises module.exports = ASpell var WorkerPool = new ASpellWorkerPool() +module.exports.cacheDump = cacheDump diff --git a/services/spelling/test/unit/js/ASpellTests.js b/services/spelling/test/unit/js/ASpellTests.js index 98a3b381de..87b659d7ec 100644 --- a/services/spelling/test/unit/js/ASpellTests.js +++ b/services/spelling/test/unit/js/ASpellTests.js @@ -30,6 +30,9 @@ describe('ASpell', function() { } })) }) + afterEach(function () { + clearInterval(this.ASpell.cacheDump) + }) describe('a correctly spelled word', function() { beforeEach(function(done) {