From 05edb22be09abadf64b193d66521ecb0d76df839 Mon Sep 17 00:00:00 2001 From: Miguel Serrano Date: Mon, 19 Feb 2024 12:24:29 +0100 Subject: [PATCH] Merge pull request #17184 from overleaf/msm-run-all-fake-timers [web] Run fake timers with runAll() instead of next() GitOrigin-RevId: 5ba89d66487a0222d17dbf576e9eeab76a572b0e --- .../unit/src/ThirdPartyDataStore/TpdsUpdateHandlerTests.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/services/web/test/unit/src/ThirdPartyDataStore/TpdsUpdateHandlerTests.js b/services/web/test/unit/src/ThirdPartyDataStore/TpdsUpdateHandlerTests.js index 8527e8c1ab..6e8ec0ef32 100644 --- a/services/web/test/unit/src/ThirdPartyDataStore/TpdsUpdateHandlerTests.js +++ b/services/web/test/unit/src/ThirdPartyDataStore/TpdsUpdateHandlerTests.js @@ -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 })