[misc] fix unit tests following the merge of atomic writes
This commit is contained in:
@@ -79,7 +79,13 @@ describe('ContentCacheManager', function () {
|
||||
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()
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user