mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-27 02:51:57 +02:00
Merge pull request #3845 from overleaf/ho-upload-file-mark-updated
mark project as updated when uploading/replacing files GitOrigin-RevId: 948a3351ac59d4f08411dd83bb543444de0b9b52
This commit is contained in:
committed by
Copybot
parent
3d48e1e027
commit
9e2db00d53
@@ -651,6 +651,13 @@ describe('ProjectEntityUpdateHandler', function() {
|
||||
.should.equal(true)
|
||||
})
|
||||
|
||||
it('should mark the project as updated', function() {
|
||||
const args = this.ProjectUpdater.markAsUpdated.args[0]
|
||||
args[0].should.equal(projectId)
|
||||
args[1].should.exist
|
||||
args[2].should.equal(userId)
|
||||
})
|
||||
|
||||
it('sends the change in project structure to the doc updater', function() {
|
||||
const newFiles = [
|
||||
{
|
||||
@@ -769,6 +776,13 @@ describe('ProjectEntityUpdateHandler', function() {
|
||||
.should.equal(true)
|
||||
})
|
||||
|
||||
it('should mark the project as updated', function() {
|
||||
const args = this.ProjectUpdater.markAsUpdated.args[0]
|
||||
args[0].should.equal(projectId)
|
||||
args[1].should.exist
|
||||
args[2].should.equal(userId)
|
||||
})
|
||||
|
||||
it('updates the project structure in the doc updater', function() {
|
||||
const oldFiles = [
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user