Handle removal of mongoose callback API for UserMemberships

GitOrigin-RevId: 0bdfaf4bfb357d75ee05513cf524540eef7fcec4
This commit is contained in:
andrew rumble
2024-08-21 08:04:42 +00:00
committed by Copybot
parent 330868ff0c
commit 4e2bfd58a1
2 changed files with 12 additions and 16 deletions
@@ -21,9 +21,9 @@ describe('UserMembershipsHandler', function () {
beforeEach(function () {
this.user = { _id: new ObjectId() }
this.Institution = { updateMany: sinon.stub().yields(null) }
this.Subscription = { updateMany: sinon.stub().yields(null) }
this.Publisher = { updateMany: sinon.stub().yields(null) }
this.Institution = { updateMany: sinon.stub().resolves(null) }
this.Subscription = { updateMany: sinon.stub().resolves(null) }
this.Publisher = { updateMany: sinon.stub().resolves(null) }
return (this.UserMembershipsHandler = SandboxedModule.require(modulePath, {
requires: {
'../../models/Institution': {