From bea0e9beb7d2af48c9757aaa4b399077cb51d164 Mon Sep 17 00:00:00 2001 From: Jakob Ackermann Date: Mon, 29 Jun 2020 11:57:16 +0100 Subject: [PATCH] [misc] RoomManagerTests: explicitly pass a cb to joinProject/joinDoc --- services/real-time/test/unit/js/RoomManagerTests.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/services/real-time/test/unit/js/RoomManagerTests.js b/services/real-time/test/unit/js/RoomManagerTests.js index 3aee509af5..a202720ec7 100644 --- a/services/real-time/test/unit/js/RoomManagerTests.js +++ b/services/real-time/test/unit/js/RoomManagerTests.js @@ -113,7 +113,7 @@ describe('RoomManager', function () { }) return describe('when there are other clients in the project room', function () { - beforeEach(function () { + beforeEach(function (done) { this.RoomManager._clientsInRoom .withArgs(this.client, this.project_id) .onFirstCall() @@ -121,7 +121,7 @@ describe('RoomManager', function () { .onSecondCall() .returns(124) this.client.join = sinon.stub() - return this.RoomManager.joinProject(this.client, this.project_id) + this.RoomManager.joinProject(this.client, this.project_id, done) }) it('should join the room using the id', function () { @@ -174,7 +174,7 @@ describe('RoomManager', function () { }) return describe('when there are other clients in the doc room', function () { - beforeEach(function () { + beforeEach(function (done) { this.RoomManager._clientsInRoom .withArgs(this.client, this.doc_id) .onFirstCall() @@ -182,7 +182,7 @@ describe('RoomManager', function () { .onSecondCall() .returns(124) this.client.join = sinon.stub() - return this.RoomManager.joinDoc(this.client, this.doc_id) + this.RoomManager.joinDoc(this.client, this.doc_id, done) }) it('should join the room using the id', function () {