diff --git a/services/web/test/unit/src/Project/ProjectUpdateHandlerTests.js b/services/web/test/unit/src/Project/ProjectUpdateHandlerTests.js index 0cc6354694..dbda832330 100644 --- a/services/web/test/unit/src/Project/ProjectUpdateHandlerTests.js +++ b/services/web/test/unit/src/Project/ProjectUpdateHandlerTests.js @@ -22,6 +22,10 @@ describe('ProjectUpdateHandler', function () { this.clock = sinon.useFakeTimers(this.fakeTime.getTime()) }) + afterEach(function () { + this.clock.restore() + }) + beforeEach(function () { let Project this.ProjectModel = Project = class Project {} diff --git a/services/web/test/unit/src/ThirdPartyDataStore/TpdsUpdateHandlerTests.js b/services/web/test/unit/src/ThirdPartyDataStore/TpdsUpdateHandlerTests.js index 33a80ec726..d769ffecf7 100644 --- a/services/web/test/unit/src/ThirdPartyDataStore/TpdsUpdateHandlerTests.js +++ b/services/web/test/unit/src/ThirdPartyDataStore/TpdsUpdateHandlerTests.js @@ -502,8 +502,7 @@ function expectProjectCreated() { ).to.have.been.calledWith(this.userId, this.projectName) }) - // eslint-disable-next-line mocha/no-skipped-tests - it.skip('sets the root doc', function () { + it('sets the root doc', function () { // Fire pending timers this.clock.runAll() expect( @@ -518,8 +517,7 @@ function expectProjectNotCreated() { .been.called }) - // eslint-disable-next-line mocha/no-skipped-tests - it.skip('does not set the root doc', function () { + it('does not set the root doc', function () { // Fire pending timers this.clock.runAll() expect(this.RootDocManager.promises.setRootDocAutomatically).not.to.have