Merge pull request #17184 from overleaf/msm-run-all-fake-timers

[web] Run fake timers with runAll() instead of next()

GitOrigin-RevId: 5ba89d66487a0222d17dbf576e9eeab76a572b0e
This commit is contained in:
Miguel Serrano 2024-02-19 12:24:29 +01:00 committed by Copybot
parent 079a86ec53
commit 05edb22be0

View file

@ -504,7 +504,7 @@ function expectProjectCreated() {
it('sets the root doc', function () {
// Fire pending timers
this.clock.next()
this.clock.runAll()
expect(
this.RootDocManager.promises.setRootDocAutomatically
).to.have.been.calledWith(this.projects.active1._id)
@ -519,7 +519,7 @@ function expectProjectNotCreated() {
it('does not set the root doc', function () {
// Fire pending timers
this.clock.next()
this.clock.runAll()
expect(this.RootDocManager.promises.setRootDocAutomatically).not.to.have
.been.called
})