[test/unit] misc: cleanup a pending interval

This commit is contained in:
Jakob Ackermann 2020-02-11 12:55:28 +01:00
parent 94d564bce3
commit 90d12cc602
2 changed files with 5 additions and 1 deletions

View file

@ -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

View file

@ -30,6 +30,9 @@ describe('ASpell', function() {
}
}))
})
afterEach(function () {
clearInterval(this.ASpell.cacheDump)
})
describe('a correctly spelled word', function() {
beforeEach(function(done) {