Merge pull request #237 from overleaf/jpa-fix-unit-tests

[misc] fix unit tests following the merge of atomic writes
This commit is contained in:
Jakob Ackermann 2021-05-18 12:17:56 +02:00 committed by GitHub
commit 31a29403a1

View file

@ -79,7 +79,13 @@ describe('ContentCacheManager', function () {
throw new Error() throw new Error()
} }
}, },
rename: sinon.stub().resolves(), async rename(oldName, newName) {
if (!files[oldName]) {
throw new Error()
}
files[newName] = files[oldName]
delete files[oldName]
},
unlink: sinon.stub().resolves() unlink: sinon.stub().resolves()
} }
} }