mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-08 11:43:11 +00:00
Repair not logged in subscription controller test
This commit is contained in:
parent
e0f6afcbb4
commit
20835a79e2
1 changed files with 2 additions and 3 deletions
|
@ -124,13 +124,11 @@ describe "SubscriptionController", ->
|
|||
@UserGetter =
|
||||
getUser: sinon.stub().callsArgWith(2, null, null)
|
||||
@res.callback = done
|
||||
@SubscriptionController.plansPage(@req, @res)
|
||||
@AuthenticationController =
|
||||
getLoggedInUser: sinon.stub().callsArgWith(1, null, null)
|
||||
getLoggedInUserId: sinon.stub().returns(null)
|
||||
getSessionUser: sinon.stub().returns(null)
|
||||
isUserLoggedIn: sinon.stub().returns(false)
|
||||
|
||||
@SubscriptionController = SandboxedModule.require modulePath, requires:
|
||||
'../Authentication/AuthenticationController': @AuthenticationController
|
||||
'./SubscriptionHandler': @SubscriptionHandler
|
||||
|
@ -146,6 +144,7 @@ describe "SubscriptionController", ->
|
|||
"../User/UserGetter": @UserGetter
|
||||
"./RecurlyWrapper": @RecurlyWrapper = {}
|
||||
"./FeaturesUpdater": @FeaturesUpdater = {}
|
||||
@SubscriptionController.plansPage(@req, @res)
|
||||
|
||||
it 'should not fetch the current user', (done) ->
|
||||
@UserGetter.getUser.callCount.should.equal 0
|
||||
|
@ -500,4 +499,4 @@ describe "SubscriptionController", ->
|
|||
@SubscriptionHandler.updateSubscription.calledWith(@user, "collaborator-annual", "COLLABORATORCODEHERE").should.equal true
|
||||
done()
|
||||
|
||||
@SubscriptionController.processUpgradeToAnnualPlan @req, @res
|
||||
@SubscriptionController.processUpgradeToAnnualPlan @req, @res
|
||||
|
|
Loading…
Add table
Reference in a new issue