mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-05 23:29:00 +02:00
Merge pull request #3655 from overleaf/jpa-change-write-path-doc-deletion
[ProjectEntityUpdateHandler] change write path for doc deletion GitOrigin-RevId: 7d7ece8fe25c1d59b3469c136d92c4c81e9f0f81
This commit is contained in:
@@ -114,7 +114,6 @@ describe('ProjectEntityUpdateHandler', function() {
|
||||
_confirmFolder: sinon.stub(),
|
||||
_putElement: sinon.stub(),
|
||||
_insertDeletedFileReference: sinon.stub(),
|
||||
_insertDeletedDocReference: sinon.stub(),
|
||||
replaceFileWithNew: sinon.stub(),
|
||||
mkdirp: sinon.stub(),
|
||||
moveEntity: sinon.stub(),
|
||||
@@ -2157,7 +2156,6 @@ describe('ProjectEntityUpdateHandler', function() {
|
||||
}
|
||||
this.path = '/path/to/doc'
|
||||
this.ProjectEntityUpdateHandler.unsetRootDoc = sinon.stub().yields()
|
||||
this.ProjectEntityMongoUpdateHandler._insertDeletedDocReference.yields()
|
||||
this.DocstoreManager.deleteDoc.yields()
|
||||
})
|
||||
|
||||
@@ -2185,12 +2183,6 @@ describe('ProjectEntityUpdateHandler', function() {
|
||||
.should.equal(true)
|
||||
})
|
||||
|
||||
it('should insert the doc into the deletedDocs array', function() {
|
||||
this.ProjectEntityMongoUpdateHandler._insertDeletedDocReference
|
||||
.calledWith(this.project._id, this.doc)
|
||||
.should.equal(true)
|
||||
})
|
||||
|
||||
it('should delete the doc in the doc store', function() {
|
||||
this.DocstoreManager.deleteDoc
|
||||
.calledWith(projectId, this.doc._id.toString(), 'test.tex')
|
||||
|
||||
Reference in New Issue
Block a user