Merge pull request #3942 from overleaf/prettier-trailing-comma
Set Prettier's "trailingComma" setting to "es5" GitOrigin-RevId: 9f14150511929a855b27467ad17be6ab262fe5d5
This commit is contained in:
@@ -12,7 +12,7 @@ describe('SamlLogHandler', function () {
|
||||
|
||||
beforeEach(function () {
|
||||
samlLog = {
|
||||
save: sinon.stub()
|
||||
save: sinon.stub(),
|
||||
}
|
||||
SamlLog = function () {
|
||||
return samlLog
|
||||
@@ -20,8 +20,8 @@ describe('SamlLogHandler', function () {
|
||||
SamlLogModel = { SamlLog }
|
||||
SamlLogHandler = SandboxedModule.require(modulePath, {
|
||||
requires: {
|
||||
'../../models/SamlLog': SamlLogModel
|
||||
}
|
||||
'../../models/SamlLog': SamlLogModel,
|
||||
},
|
||||
})
|
||||
|
||||
data = { foo: true }
|
||||
|
||||
Reference in New Issue
Block a user