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-06 09:05:38 +00:00
committed by Copybot
parent 5ad9ac439c
commit 932f395932
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,
})
})