subscription tests fixed

This commit is contained in:
Henry Oswald 2016-03-22 14:27:05 +00:00
parent cc84aaf834
commit a89edde139

View file

@ -68,7 +68,9 @@ describe "SubscriptionController sanboxed", ->
"./LimitationsManager": @LimitationsManager "./LimitationsManager": @LimitationsManager
"../../infrastructure/GeoIpLookup":@GeoIpLookup "../../infrastructure/GeoIpLookup":@GeoIpLookup
'./RecurlyWrapper': @RecurlyWrapper './RecurlyWrapper': @RecurlyWrapper
"logger-sharelatex": log:-> "logger-sharelatex":
log:->
warn:->
"settings-sharelatex": @settings "settings-sharelatex": @settings
"./SubscriptionDomainHandler":@SubscriptionDomainHandler "./SubscriptionDomainHandler":@SubscriptionDomainHandler
@ -273,7 +275,7 @@ describe "SubscriptionController sanboxed", ->
describe "userCustomSubscriptionPage", -> describe "userCustomSubscriptionPage", ->
beforeEach (done) -> beforeEach (done) ->
@res.callback = done @res.callback = done
@LimitationsManager.userHasSubscriptionOrIsGroupMember.callsArgWith(1, null, true) @LimitationsManager.userHasSubscriptionOrIsGroupMember.callsArgWith(1, null, true, {})
@SubscriptionController.userCustomSubscriptionPage @req, @res @SubscriptionController.userCustomSubscriptionPage @req, @res
it "should render the page", (done)-> it "should render the page", (done)->