mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-05 17:00:55 +00:00
[test/unit] misc: cleanup a pending interval
This commit is contained in:
parent
94d564bce3
commit
90d12cc602
2 changed files with 5 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -30,6 +30,9 @@ describe('ASpell', function() {
|
|||
}
|
||||
}))
|
||||
})
|
||||
afterEach(function () {
|
||||
clearInterval(this.ASpell.cacheDump)
|
||||
})
|
||||
|
||||
describe('a correctly spelled word', function() {
|
||||
beforeEach(function(done) {
|
||||
|
|
Loading…
Reference in a new issue