Merge pull request #22184 from overleaf/ls-group-plan-upgrade-page

Group plan upgrade page

GitOrigin-RevId: 6c99173c013d84943276dbd43f468026c4d44558
This commit is contained in:
Liangjun Song
2024-12-05 13:32:29 +01:00
committed by Copybot
parent a3b4c47a6f
commit 3351ac3dc8
15 changed files with 500 additions and 3 deletions
@@ -77,6 +77,12 @@ describe('SubscriptionGroupController', function () {
},
}
this.RecurlyClient = {}
this.SubscriptionController = {}
this.SubscriptionModel = { Subscription: {} }
this.Controller = await esmock.strict(modulePath, {
'../../../../app/src/Features/Subscription/SubscriptionGroupHandler':
this.SubscriptionGroupHandler,
@@ -94,6 +100,11 @@ describe('SubscriptionGroupController', function () {
(this.ErrorController = {
notFound: sinon.stub(),
}),
'../../../../app/src/Features/Subscription/SubscriptionController':
this.SubscriptionController,
'../../../../app/src/Features/Subscription/RecurlyClient':
this.RecurlyClient,
'../../../../app/src/models/Subscription': this.SubscriptionModel,
})
})