diff --git a/services/web/test/unit/coffee/Subscription/SubscriptionControllerTests.coffee b/services/web/test/unit/coffee/Subscription/SubscriptionControllerTests.coffee index 0fb9344108..f6808727d1 100644 --- a/services/web/test/unit/coffee/Subscription/SubscriptionControllerTests.coffee +++ b/services/web/test/unit/coffee/Subscription/SubscriptionControllerTests.coffee @@ -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 \ No newline at end of file + @SubscriptionController.processUpgradeToAnnualPlan @req, @res