Merge pull request #7125 from overleaf/jk-project-rename-strip-ends

[web] Rename project: trim whitespace on ends

GitOrigin-RevId: 2499d9e206ed5c929870a0f50cccd07ce3ec5ba7
This commit is contained in:
June Kelly
2022-03-24 09:18:49 +00:00
committed by Copybot
parent 78ecd481ca
commit a9609f55d2
2 changed files with 12 additions and 0 deletions
@@ -186,6 +186,17 @@ describe('ProjectDetailsHandler', function () {
expect(this.TpdsUpdateSender.promises.moveEntity).not.to.have.been.called
expect(this.ProjectModel.updateOne).not.to.have.been.called
})
it('should trim whitespace around name', async function () {
await this.handler.promises.renameProject(
this.project._id,
` ${this.newName} `
)
expect(this.ProjectModel.updateOne).to.have.been.calledWith(
{ _id: this.project._id },
{ name: this.newName }
)
})
})
describe('validateProjectName', function () {