mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-28 03:21:56 +02:00
Merge pull request #3942 from overleaf/prettier-trailing-comma
Set Prettier's "trailingComma" setting to "es5" GitOrigin-RevId: 9f14150511929a855b27467ad17be6ab262fe5d5
This commit is contained in:
@@ -15,19 +15,19 @@ describe('BetaProgramHandler', function () {
|
||||
email: 'user@example.com',
|
||||
features: {},
|
||||
betaProgram: false,
|
||||
save: sinon.stub().callsArgWith(0, null)
|
||||
save: sinon.stub().callsArgWith(0, null),
|
||||
}
|
||||
this.handler = SandboxedModule.require(modulePath, {
|
||||
requires: {
|
||||
'@overleaf/metrics': {
|
||||
inc: sinon.stub()
|
||||
inc: sinon.stub(),
|
||||
},
|
||||
'../User/UserUpdater': (this.UserUpdater = {
|
||||
promises: {
|
||||
updateUser: sinon.stub().resolves()
|
||||
}
|
||||
})
|
||||
}
|
||||
updateUser: sinon.stub().resolves(),
|
||||
},
|
||||
}),
|
||||
},
|
||||
})
|
||||
})
|
||||
|
||||
|
||||
Reference in New Issue
Block a user